absolvent / gore-gulp

Simple way to run and maintain React.js projects without any configuration.
MIT License
1 stars 0 forks source link

allow defining tasks prefix #16

Open mcharytoniuk opened 9 years ago

mcharytoniuk commented 9 years ago

Allow defining tasks prefix with configuration object:

gg({
  "baseDir": __dirname,
  "prefix": "gg-"
}).setup(gulp);

Then:

$ gulp gg-test
$ gulp gg-lint

Instead of:

$ gulp test
$ gulp lint