├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── karma.conf.js ├── karma.entry.js ├── karma.runner.js ├── mocha.entry.js ├── package.json ├── template.html ├── tests ├── entry.js ├── entry.spec.js └── feature-detects.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "stage": 0 3 | } -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpalombaro/modernizr-webpack-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpalombaro/modernizr-webpack-plugin/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpalombaro/modernizr-webpack-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpalombaro/modernizr-webpack-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpalombaro/modernizr-webpack-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpalombaro/modernizr-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpalombaro/modernizr-webpack-plugin/HEAD/index.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpalombaro/modernizr-webpack-plugin/HEAD/karma.conf.js -------------------------------------------------------------------------------- /karma.entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpalombaro/modernizr-webpack-plugin/HEAD/karma.entry.js -------------------------------------------------------------------------------- /karma.runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpalombaro/modernizr-webpack-plugin/HEAD/karma.runner.js -------------------------------------------------------------------------------- /mocha.entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpalombaro/modernizr-webpack-plugin/HEAD/mocha.entry.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpalombaro/modernizr-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpalombaro/modernizr-webpack-plugin/HEAD/template.html -------------------------------------------------------------------------------- /tests/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpalombaro/modernizr-webpack-plugin/HEAD/tests/entry.js -------------------------------------------------------------------------------- /tests/entry.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpalombaro/modernizr-webpack-plugin/HEAD/tests/entry.spec.js -------------------------------------------------------------------------------- /tests/feature-detects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpalombaro/modernizr-webpack-plugin/HEAD/tests/feature-detects.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpalombaro/modernizr-webpack-plugin/HEAD/webpack.config.js --------------------------------------------------------------------------------