Skip to content

taoyuan/flit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flit

A Flexable Javascript Task Runner.

Getting Started

1. Install flit-cli globally:

npm install -g flit-cli

2. Install flit in your project devDependencies:

npm install --save-dev flit

3. 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:

flit

The default task will run and do nothing.

To run individual tasks, use flit <task> <othertask> <@destination>.

Plugins

Flightplan plugin for using flightplan for streamlining application deployment or systems administration tasks.

Reference

About

A Flexable Javascript Task Runner.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published