Skip to content
This repository has been archived by the owner on Jun 7, 2022. It is now read-only.

Latest commit

 

History

History
34 lines (25 loc) · 684 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 684 Bytes

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-dev

How 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.