├── .github └── workflows │ └── test.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── example ├── __tests__ │ └── example-test.js ├── index.js └── webpack.config.js ├── index.js ├── package.json └── renovate.json /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottsj/generate-json-webpack-plugin/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /example/build/ 2 | *.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /example/build/ 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottsj/generate-json-webpack-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottsj/generate-json-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /example/__tests__/example-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottsj/generate-json-webpack-plugin/HEAD/example/__tests__/example-test.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- 1 | console.log('Hello'); 2 | -------------------------------------------------------------------------------- /example/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottsj/generate-json-webpack-plugin/HEAD/example/webpack.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottsj/generate-json-webpack-plugin/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottsj/generate-json-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottsj/generate-json-webpack-plugin/HEAD/renovate.json --------------------------------------------------------------------------------