tictail / gulp-tictail

Gulp target for simplified Tictail theme creation.
https://www.npmjs.com/package/gulp-tictail/
14 stars 6 forks source link

gulp-tictail

NPM CircleCI

Gulp target for simplifying Tictail theme creation. Please note that this is beta quality software, some template tags are not yet implemented.

Installation

$ npm install --save-dev gulp-tictail

Usage

In your gulpfile.js:

var gulp = require('gulp'),
    tictail = require('gulp-tictail');

gulp.task('serve', function() {
    tictail.serve({
        store_id: 'pf'
    });
});

gulp.task('default', ['serve']);
$ gulp

Now hit http://localhost:5555/ to enjoy your own delightful theme development experience.

For an opinionated development setup using gulp-tictail, see theme-example.

Options

The serve method takes the following config options as an object:

Development

$ git clone https://github.com/tictail/gulp-tictail .
$ npm install
$ make test