Description
Vegetto is a module for allowing divided nodejs development, so that this module groups and files minify.
npm install vegetto
#
vegetto.json
```js
{
"files": {
"./folder/file.min.js": [
"./folder/dev/file1.js",
"./folder/dev/file2.js"
]
},
"options": {}
}
vegetto vegetto.json
Vegetto heard and modified files will be saved in time so minify file.min.js
#
adding "refresh" the object attribute options can create a list of files you hear the change of the final file, so that when this is changed it will be stored in those files.
```js
{
"files": {
"./folder/file.min.js": [
"./folder/dev/file1.js",
"./folder/dev/file2.js"
]
},
"options": {
"./folder/file.min.js": [
"./olderFolder/file.js"
]
}
}