├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── BUG.md │ ├── DOCS.md │ ├── FEATURE.md │ ├── MODIFICATION.md │ └── SUPPORT.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── babel.config.js ├── bin └── index.js ├── commitlint.config.js ├── husky.config.js ├── lib └── post_install.js ├── lint-staged.config.js ├── package.json ├── src ├── index.js └── tasks │ ├── git.js │ ├── package.js │ ├── readme.js │ └── templates.js ├── templates ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github │ ├── CODEOWNERS │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE.md │ ├── ISSUE_TEMPLATE │ │ ├── BUG.md │ │ ├── DOCS.md │ │ ├── FEATURE.md │ │ ├── MODIFICATION.md │ │ └── SUPPORT.md │ └── PULL_REQUEST_TEMPLATE.md ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── babel.config.js ├── commitlint.config.js ├── husky.config.js ├── lint-staged.config.js ├── src │ ├── cjs.js │ ├── index.js │ └── options.json └── test │ ├── cjs.test.js │ ├── fixtures │ ├── foo.js │ └── simple.js │ ├── helpers │ ├── compile.js │ ├── execute.js │ ├── getCompiler.js │ ├── getErrors.js │ ├── getWarnings.js │ ├── index.js │ ├── normalizeErrors.js │ ├── readAsset.js │ └── readAssets.js │ ├── loader.test.js │ ├── name-option.test.js │ └── validate-options.test.js └── test └── noon.test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /coverage 2 | /dist 3 | /node_modules 4 | /test/fixtures -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: webpack 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/.github/ISSUE_TEMPLATE/BUG.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/.github/ISSUE_TEMPLATE/DOCS.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/.github/ISSUE_TEMPLATE/FEATURE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/MODIFICATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/.github/ISSUE_TEMPLATE/MODIFICATION.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/.github/ISSUE_TEMPLATE/SUPPORT.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/bin/index.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'], 3 | }; 4 | -------------------------------------------------------------------------------- /husky.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/husky.config.js -------------------------------------------------------------------------------- /lib/post_install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/lib/post_install.js -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/src/index.js -------------------------------------------------------------------------------- /src/tasks/git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/src/tasks/git.js -------------------------------------------------------------------------------- /src/tasks/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/src/tasks/package.js -------------------------------------------------------------------------------- /src/tasks/readme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/src/tasks/readme.js -------------------------------------------------------------------------------- /src/tasks/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/src/tasks/templates.js -------------------------------------------------------------------------------- /templates/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/.editorconfig -------------------------------------------------------------------------------- /templates/.eslintignore: -------------------------------------------------------------------------------- 1 | /coverage 2 | /dist 3 | /node_modules 4 | /test/fixtures 5 | -------------------------------------------------------------------------------- /templates/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/.eslintrc.js -------------------------------------------------------------------------------- /templates/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/.github/CODEOWNERS -------------------------------------------------------------------------------- /templates/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /templates/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: webpack 2 | -------------------------------------------------------------------------------- /templates/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /templates/.github/ISSUE_TEMPLATE/BUG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/.github/ISSUE_TEMPLATE/BUG.md -------------------------------------------------------------------------------- /templates/.github/ISSUE_TEMPLATE/DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/.github/ISSUE_TEMPLATE/DOCS.md -------------------------------------------------------------------------------- /templates/.github/ISSUE_TEMPLATE/FEATURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/.github/ISSUE_TEMPLATE/FEATURE.md -------------------------------------------------------------------------------- /templates/.github/ISSUE_TEMPLATE/MODIFICATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/.github/ISSUE_TEMPLATE/MODIFICATION.md -------------------------------------------------------------------------------- /templates/.github/ISSUE_TEMPLATE/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/.github/ISSUE_TEMPLATE/SUPPORT.md -------------------------------------------------------------------------------- /templates/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /templates/.prettierignore: -------------------------------------------------------------------------------- 1 | /coverage 2 | /dist 3 | /node_modules 4 | /test/fixtures 5 | CHANGELOG.md 6 | -------------------------------------------------------------------------------- /templates/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/.prettierrc.js -------------------------------------------------------------------------------- /templates/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/CHANGELOG.md -------------------------------------------------------------------------------- /templates/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/LICENSE -------------------------------------------------------------------------------- /templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/README.md -------------------------------------------------------------------------------- /templates/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/azure-pipelines.yml -------------------------------------------------------------------------------- /templates/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/babel.config.js -------------------------------------------------------------------------------- /templates/commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'], 3 | }; 4 | -------------------------------------------------------------------------------- /templates/husky.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/husky.config.js -------------------------------------------------------------------------------- /templates/lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/lint-staged.config.js -------------------------------------------------------------------------------- /templates/src/cjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/src/cjs.js -------------------------------------------------------------------------------- /templates/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/src/index.js -------------------------------------------------------------------------------- /templates/src/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/src/options.json -------------------------------------------------------------------------------- /templates/test/cjs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/test/cjs.test.js -------------------------------------------------------------------------------- /templates/test/fixtures/foo.js: -------------------------------------------------------------------------------- 1 | export default 'foo'; 2 | -------------------------------------------------------------------------------- /templates/test/fixtures/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/test/fixtures/simple.js -------------------------------------------------------------------------------- /templates/test/helpers/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/test/helpers/compile.js -------------------------------------------------------------------------------- /templates/test/helpers/execute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/test/helpers/execute.js -------------------------------------------------------------------------------- /templates/test/helpers/getCompiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/test/helpers/getCompiler.js -------------------------------------------------------------------------------- /templates/test/helpers/getErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/test/helpers/getErrors.js -------------------------------------------------------------------------------- /templates/test/helpers/getWarnings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/test/helpers/getWarnings.js -------------------------------------------------------------------------------- /templates/test/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/test/helpers/index.js -------------------------------------------------------------------------------- /templates/test/helpers/normalizeErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/test/helpers/normalizeErrors.js -------------------------------------------------------------------------------- /templates/test/helpers/readAsset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/test/helpers/readAsset.js -------------------------------------------------------------------------------- /templates/test/helpers/readAssets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/test/helpers/readAssets.js -------------------------------------------------------------------------------- /templates/test/loader.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/test/loader.test.js -------------------------------------------------------------------------------- /templates/test/name-option.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/test/name-option.test.js -------------------------------------------------------------------------------- /templates/test/validate-options.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/templates/test/validate-options.test.js -------------------------------------------------------------------------------- /test/noon.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack-contrib/webpack-defaults/HEAD/test/noon.test.js --------------------------------------------------------------------------------