├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── .eslintrc ├── fixtures ├── entry.js └── greeter.js └── plugin.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unindented/stats-webpack-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unindented/stats-webpack-plugin/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "standard" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unindented/stats-webpack-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /.* 2 | /test/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unindented/stats-webpack-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unindented/stats-webpack-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unindented/stats-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unindented/stats-webpack-plugin/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unindented/stats-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unindented/stats-webpack-plugin/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/fixtures/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unindented/stats-webpack-plugin/HEAD/test/fixtures/entry.js -------------------------------------------------------------------------------- /test/fixtures/greeter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unindented/stats-webpack-plugin/HEAD/test/fixtures/greeter.js -------------------------------------------------------------------------------- /test/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unindented/stats-webpack-plugin/HEAD/test/plugin.js --------------------------------------------------------------------------------