runs alot of files.
RunnerTask is very helpful for developers who need to run more than 1file at a time or even want to control which files be on or off it's very easy to use and you can add or remove files as you want (CommonJs Supported Only)
npm install @wdstudios/runnertask
Here we will show you how to use our product.
const Runner = require('@wdstudios/runnertask');
// Example usage with a configuration file
const runner = new Runner({
config: './config.js'
});
runner.run();
module.exports = {
runnersys: {
"example.js": true,
"folder/example.js": false,
"folder/folder/example.js": true
}
}
{
"runnersys": {
"example.js": false,
"folder/example.js": false,
"folder/folder/example.js": false
}
}
-
0.1.0
- The first proper release
-
0.1.1
- fixed one small tiny issue
Distributed under the MIT license. See LICENSE
for more information.
Discord: [https://discord.gg/5WkkhHn4rK]