https://agentcooper.github.io/parcel-plugin-static-zip/
Provide archived local directory in the static build. Useful for BrowserFS.
npm install parcel-plugin-static-zip --save-dev
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
.