@sphinx-software/manifestor
v0.0.4
Published
Sphinx Manifestor
Downloads
2
Readme
Manifestor v0.0.1
Installation
npm install -g manifestor
Usage
In your package.json
file, add the field manifestor
// The package.json file
{
"manifestor": [
{
"directory": "./src",
},
{
"directory": "./other-package",
"options": [
"**/.test.js"
]
}
]
}
then run
$ manifestor
You should see the output about the manifest.js
file:
Generated manifest file at /your/project/manifest.js
This file is already requires source files from the src
directory and the other-package
directory (except the files end with .test.js
)
The exclude option is following minimatch library
That's it!