Gulp.js plugin for Shopify theme development.
Highlights:
$ npm install --save-dev gulp-shopify-theme
.pipe(shopifytheme.stream( options ))
gulpfile.js
shopify-api-node
as the API wrapperA working example can be found here: gist.github.com/tmslnz/1d025baaa…
var shopifytheme = require('gulp-shopify-theme').create();
var shopifyconfig = {
"api_key": "8a1a2001d06ff…",
"password": "51f8c8de49ee28…",
"shared_secret": "51f8c8de49ee51…",
"shop_name": "yourshopname…",
"theme_id": "12345678…"
}
gulp.task( 'copy', ['shopify-theme-init'], function () {
return gulp.src( [ 'src/{layout,config,snippets,templates,locales}/**/*.*' ] )
.pipe( shopifytheme.stream() );
});
gulp.task( 'shopify-theme-init', function () {
shopifytheme.init(shopifyconfig);
});
gulp.task( 'watch', function () {
//
// …watch and compile tasks…
//
shopifytheme.on('done', browserSync.reload());
});
shopifytheme.create( options )
Returns a new instance. The instance will do nothing until .init( options )
is called on it.
shopifytheme.init( options )
Initialises an instance with options
. The plugin will wait for, and queue, new files as they come through.
shopifytheme.stream( options )
Use this to stream any theme file to the plugin.
Options are:
gulp.src( [ 'src/js/*.js' ] )
.pipe( shopifytheme.stream( {theme_id: 12345} ) )
.pipe( gulp.dest( 'dist' ) )
batchMode
will force stream()
to return the Gulp stream immediately.
In this mode you can subscribe to done
and error
to be notified when all tasks have ended.
Passing theme_id
is optional if you have already passed it to the instance's configuration on init()
. However if used it will override the pre-exisiting theme_id
. If no theme_id
is present an error is thrown.
shopifytheme.purge()
This will delete all theme files from Shopify. Equivalent to going to the Shopify Admin and deleting each file by hand (eww!). Use with caution, of course.
.purge()
honours a blacklist of _un_deletable files (e.g. layout/theme.liquid
)
For now it's just API configuration.
shopify-api-node
)The plugin instance emits two events done
and error
at the end of a sync task queue.
On done
the event handler receives the list of files that have successfully synced.
On error
the handler is passed whatever error was thrown in the process.