sails-generate-new-gulp

0.0.11 • Public • Published

image_squidhome@2x.png

sails-generate-new-gulp


NPM version NPM downloads Dependency Status MIT License

A gulp generator for Sails.js that works with sails lift.

Install

$ npm install -g sails-generate-backend-gulp
$ npm install -g sails-generate-gulpfile
$ npm install -g sails-generate-frontend-gulp
$ npm install -g sails-generate-new-gulp
 

.sailsrc

.sailsrc needs to be added to the working dir with the following:

{
    "generators"{
        "modules"{
            "new""sails-generate-new-gulp",
            "frontend""sails-generate-frontend-gulp",
            "backend""sails-generate-backend-gulp",
            "gulpfile""sails-generate-gulpfile"
        }
    }
}

Usage

On the command line

sails new <project name>

In a node script

var generate = require('sails-generate');
var scope = {};
generate(require('sails-generate-new-gulp'), scope, function (err) {
    if (err) throw err;
 
    // Log output available in `scope` for your enjoyment:
    console.log(scope);
});

Contributing to this generator

See CONTRIBUTING.md.

License

MIT © 2014 Karnith

Sails is free and open-source under the MIT License.

Package Sidebar

Install

npm i sails-generate-new-gulp

Weekly Downloads

0

Version

0.0.11

License

MIT

Last publish

Collaborators

  • karnith