├── .gitignore ├── .prettierignore ├── LICENSE ├── README.md ├── __mocks__ ├── fs.ts └── webpack-log.ts ├── jest.config.js ├── package.json ├── src ├── index.spec.ts └── index.ts ├── tsconfig.build.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0th1ng-else/webpack-config-dump-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0th1ng-else/webpack-config-dump-plugin/HEAD/.prettierignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0th1ng-else/webpack-config-dump-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0th1ng-else/webpack-config-dump-plugin/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0th1ng-else/webpack-config-dump-plugin/HEAD/__mocks__/fs.ts -------------------------------------------------------------------------------- /__mocks__/webpack-log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0th1ng-else/webpack-config-dump-plugin/HEAD/__mocks__/webpack-log.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0th1ng-else/webpack-config-dump-plugin/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0th1ng-else/webpack-config-dump-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0th1ng-else/webpack-config-dump-plugin/HEAD/src/index.spec.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0th1ng-else/webpack-config-dump-plugin/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0th1ng-else/webpack-config-dump-plugin/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0th1ng-else/webpack-config-dump-plugin/HEAD/tsconfig.json --------------------------------------------------------------------------------