├── .gitignore ├── HISTORY.md ├── LICENSE.md ├── README.md ├── lib └── ChunkManifestPlugin.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundcloud/chunk-manifest-webpack-plugin/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundcloud/chunk-manifest-webpack-plugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundcloud/chunk-manifest-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /lib/ChunkManifestPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundcloud/chunk-manifest-webpack-plugin/HEAD/lib/ChunkManifestPlugin.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soundcloud/chunk-manifest-webpack-plugin/HEAD/package.json --------------------------------------------------------------------------------