Skip to content

Latest commit

 

History

History
80 lines (57 loc) · 2.28 KB

README.md

File metadata and controls

80 lines (57 loc) · 2.28 KB

image_squidhome@2x.png

sails-generate-new-gulp

Depreciated.. use machinepack-sailsgulpify


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.