├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── src ├── app.js ├── hi.jpg └── spawned.js └── test.js /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdesjardins/zip-webpack-plugin/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdesjardins/zip-webpack-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # Everything 2 | * 3 | 4 | !index.js 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdesjardins/zip-webpack-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdesjardins/zip-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdesjardins/zip-webpack-plugin/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdesjardins/zip-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /test/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdesjardins/zip-webpack-plugin/HEAD/test/src/app.js -------------------------------------------------------------------------------- /test/src/hi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdesjardins/zip-webpack-plugin/HEAD/test/src/hi.jpg -------------------------------------------------------------------------------- /test/src/spawned.js: -------------------------------------------------------------------------------- 1 | var foo = 'bar'; 2 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdesjardins/zip-webpack-plugin/HEAD/test/test.js --------------------------------------------------------------------------------