├── .circleci └── config.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── compress.js ├── index.js ├── package.json └── test ├── fixtures └── entry.js └── index.test.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynameiswhm/brotli-webpack-plugin/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | package-lock.json 3 | 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynameiswhm/brotli-webpack-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynameiswhm/brotli-webpack-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynameiswhm/brotli-webpack-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynameiswhm/brotli-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /compress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynameiswhm/brotli-webpack-plugin/HEAD/compress.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynameiswhm/brotli-webpack-plugin/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynameiswhm/brotli-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynameiswhm/brotli-webpack-plugin/HEAD/test/fixtures/entry.js -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynameiswhm/brotli-webpack-plugin/HEAD/test/index.test.js --------------------------------------------------------------------------------