flit
v0.0.9
Published
A Flexable Javascript Task Runner.
Downloads
3
Readme
Flit
A Flexable Javascript Task Runner.
Getting Started
1. Install flit-cli globally:
npm install -g flit-cli2. Install flit in your project devDependencies:
npm install --save-dev flit3. Create a flitfile.js at the root of your project:
module.exports = function (flit) {
flit.task('default', function() {
// place code for your default task here
});
};4. Run flit:
flitThe default task will run and do nothing.
To run individual tasks, use flit <task> <othertask> <@destination>.
Plugins
flit-contrib-flightplan
Flightplan plugin for using flightplan for streamlining application deployment or systems administration tasks.
