├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── demo.gif ├── demo ├── index.html ├── src │ ├── app.js │ ├── background.css │ └── nebula.jpeg └── webpack.config.js ├── index.js ├── package.json ├── resize-image.js ├── resize-loader.js └── tests ├── loader.test.js ├── plugin.test.js └── test-output.css /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | demo/build 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | demo 2 | tests 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceagency/postcss-srcset/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceagency/postcss-srcset/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceagency/postcss-srcset/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceagency/postcss-srcset/HEAD/demo.gif -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceagency/postcss-srcset/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/src/app.js: -------------------------------------------------------------------------------- 1 | require("./background.css"); 2 | -------------------------------------------------------------------------------- /demo/src/background.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceagency/postcss-srcset/HEAD/demo/src/background.css -------------------------------------------------------------------------------- /demo/src/nebula.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceagency/postcss-srcset/HEAD/demo/src/nebula.jpeg -------------------------------------------------------------------------------- /demo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceagency/postcss-srcset/HEAD/demo/webpack.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceagency/postcss-srcset/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceagency/postcss-srcset/HEAD/package.json -------------------------------------------------------------------------------- /resize-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceagency/postcss-srcset/HEAD/resize-image.js -------------------------------------------------------------------------------- /resize-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceagency/postcss-srcset/HEAD/resize-loader.js -------------------------------------------------------------------------------- /tests/loader.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceagency/postcss-srcset/HEAD/tests/loader.test.js -------------------------------------------------------------------------------- /tests/plugin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceagency/postcss-srcset/HEAD/tests/plugin.test.js -------------------------------------------------------------------------------- /tests/test-output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceagency/postcss-srcset/HEAD/tests/test-output.css --------------------------------------------------------------------------------