@wdstudios/runnertask
v0.1.1
Published
> runs alot of files.
Downloads
4
Readme
runnertask
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)
Installation
npm install @wdstudios/runnertask
Usage example
Here we will show you how to use our product.
example
const Runner = require('@wdstudios/runnertask');
// Example usage with a configuration file
const runner = new Runner({
config: './config.js'
});
runner.run();
config.js
module.exports = {
runnersys: {
"example.js": true,
"folder/example.js": false,
"folder/folder/example.js": true
}
}
config.json
{
"runnersys": {
"example.js": false,
"folder/example.js": false,
"folder/folder/example.js": false
}
}
Release History
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.
Support
Discord: [https://discord.gg/5WkkhHn4rK]