├── .editorconfig ├── .gitignore ├── .node-version ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json └── spec ├── fixtures ├── entry.js └── expected.html ├── index.spec.js └── support └── jasmine.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jantimon/resource-hints-webpack-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /dist/ 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 6.9.1 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jantimon/resource-hints-webpack-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jantimon/resource-hints-webpack-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jantimon/resource-hints-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jantimon/resource-hints-webpack-plugin/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jantimon/resource-hints-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /spec/fixtures/entry.js: -------------------------------------------------------------------------------- 1 | console.log('hello world'); 2 | -------------------------------------------------------------------------------- /spec/fixtures/expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jantimon/resource-hints-webpack-plugin/HEAD/spec/fixtures/expected.html -------------------------------------------------------------------------------- /spec/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jantimon/resource-hints-webpack-plugin/HEAD/spec/index.spec.js -------------------------------------------------------------------------------- /spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jantimon/resource-hints-webpack-plugin/HEAD/spec/support/jasmine.json --------------------------------------------------------------------------------