@chisel/ease
v1.3.1
Published
A minimal task runner with scheduling capabilities.
Readme
Ease Task Runner
Ease is a minimal task runner with scheduling capabilities designed to be flexible and easy to work with.
Installation
npm install @chisel/ease -gQuick Start
- Create the following file in project root:
easeconfig.js:
module.exports = ease => {
ease.task('task1', () => {
// Perform task
});
ease.job('job1', ['task1']);
};- Run
job1through the CLI command:ease job1 - Read the official documentation to learn how to schedule jobs, install/create plugins, and all the other benefits Ease has to offer.
