0.0.7 • Published 7 years ago
parcel-plugin-static-zip v0.0.7
parcel-plugin-static-zip
https://agentcooper.github.io/parcel-plugin-static-zip/
Provide archived local directory in the static build. Useful for BrowserFS.
Install
npm install parcel-plugin-static-zip --save-devHow to use
Add config to your package.json:
"parcel-plugin-static-zip": {
"self.zip": {
"glob": "**",
"options": {
"cwd": "../../",
"ignore": [
"**/node_modules/**",
"**/dist/**"
]
}
}
},options are node-glob options.
Whenever Parcel builds the project, self.zip will be available in the dist.