├── .eslintrc ├── .gitignore ├── .npmignore ├── CONTRIBUTING.md ├── README.md ├── babel.config.js ├── package.json ├── rollup.config.js ├── src └── index.js └── test ├── fixtures ├── gif.gif ├── gif.js ├── jpg.jpg ├── jpg.js ├── png.js ├── png.png ├── svg.js └── svg.svg └── index.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malchata/rollup-plugin-imagemin/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Thumbs.db 2 | .DS_Store 3 | node_modules 4 | dist 5 | test/output 6 | .vscode 7 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malchata/rollup-plugin-imagemin/HEAD/.npmignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malchata/rollup-plugin-imagemin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malchata/rollup-plugin-imagemin/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malchata/rollup-plugin-imagemin/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malchata/rollup-plugin-imagemin/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malchata/rollup-plugin-imagemin/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malchata/rollup-plugin-imagemin/HEAD/src/index.js -------------------------------------------------------------------------------- /test/fixtures/gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malchata/rollup-plugin-imagemin/HEAD/test/fixtures/gif.gif -------------------------------------------------------------------------------- /test/fixtures/gif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malchata/rollup-plugin-imagemin/HEAD/test/fixtures/gif.js -------------------------------------------------------------------------------- /test/fixtures/jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malchata/rollup-plugin-imagemin/HEAD/test/fixtures/jpg.jpg -------------------------------------------------------------------------------- /test/fixtures/jpg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malchata/rollup-plugin-imagemin/HEAD/test/fixtures/jpg.js -------------------------------------------------------------------------------- /test/fixtures/png.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malchata/rollup-plugin-imagemin/HEAD/test/fixtures/png.js -------------------------------------------------------------------------------- /test/fixtures/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malchata/rollup-plugin-imagemin/HEAD/test/fixtures/png.png -------------------------------------------------------------------------------- /test/fixtures/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malchata/rollup-plugin-imagemin/HEAD/test/fixtures/svg.js -------------------------------------------------------------------------------- /test/fixtures/svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malchata/rollup-plugin-imagemin/HEAD/test/fixtures/svg.svg -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malchata/rollup-plugin-imagemin/HEAD/test/index.js --------------------------------------------------------------------------------