├── .github └── workflows │ ├── build.yml │ └── deploy.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── spec ├── index.spec.ts └── test_data │ ├── entry.js │ ├── index.html │ └── polyfill.js ├── src └── plugin.ts └── tsconfig.json /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localyost3000/webpack-nomodule-plugin/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localyost3000/webpack-nomodule-plugin/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localyost3000/webpack-nomodule-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localyost3000/webpack-nomodule-plugin/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localyost3000/webpack-nomodule-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localyost3000/webpack-nomodule-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localyost3000/webpack-nomodule-plugin/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localyost3000/webpack-nomodule-plugin/HEAD/package.json -------------------------------------------------------------------------------- /spec/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localyost3000/webpack-nomodule-plugin/HEAD/spec/index.spec.ts -------------------------------------------------------------------------------- /spec/test_data/entry.js: -------------------------------------------------------------------------------- 1 | console.log('hello there, general webpacky'); -------------------------------------------------------------------------------- /spec/test_data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localyost3000/webpack-nomodule-plugin/HEAD/spec/test_data/index.html -------------------------------------------------------------------------------- /spec/test_data/polyfill.js: -------------------------------------------------------------------------------- 1 | console.log('I only run on IE :('); -------------------------------------------------------------------------------- /src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localyost3000/webpack-nomodule-plugin/HEAD/src/plugin.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localyost3000/webpack-nomodule-plugin/HEAD/tsconfig.json --------------------------------------------------------------------------------