├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── plugin.js ├── test-project-webpack5 ├── README.md ├── build-utils │ ├── webpack.development.js │ └── webpack.production.js ├── index.html ├── package-lock.json ├── package.json ├── src │ ├── assets │ │ ├── bicycle_2.jpg │ │ ├── cookie-monster.gif │ │ └── images │ │ │ └── folder.with.dots │ │ │ └── inner-folder │ │ │ └── bicycle_1.jpg │ ├── index.js │ └── style.css └── webpack.config.js └── test-project ├── README.md ├── build-utils ├── webpack.development.js └── webpack.production.js ├── index.html ├── package-lock.json ├── package.json ├── src ├── assets │ ├── bicycle_2.jpg │ ├── cookie-monster.gif │ └── images │ │ └── folder.with.dots │ │ └── inner-folder │ │ └── bicycle_1.jpg ├── index.js └── style.css └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/plugin.js -------------------------------------------------------------------------------- /test-project-webpack5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project-webpack5/README.md -------------------------------------------------------------------------------- /test-project-webpack5/build-utils/webpack.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project-webpack5/build-utils/webpack.development.js -------------------------------------------------------------------------------- /test-project-webpack5/build-utils/webpack.production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project-webpack5/build-utils/webpack.production.js -------------------------------------------------------------------------------- /test-project-webpack5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project-webpack5/index.html -------------------------------------------------------------------------------- /test-project-webpack5/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project-webpack5/package-lock.json -------------------------------------------------------------------------------- /test-project-webpack5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project-webpack5/package.json -------------------------------------------------------------------------------- /test-project-webpack5/src/assets/bicycle_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project-webpack5/src/assets/bicycle_2.jpg -------------------------------------------------------------------------------- /test-project-webpack5/src/assets/cookie-monster.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project-webpack5/src/assets/cookie-monster.gif -------------------------------------------------------------------------------- /test-project-webpack5/src/assets/images/folder.with.dots/inner-folder/bicycle_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project-webpack5/src/assets/images/folder.with.dots/inner-folder/bicycle_1.jpg -------------------------------------------------------------------------------- /test-project-webpack5/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project-webpack5/src/index.js -------------------------------------------------------------------------------- /test-project-webpack5/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project-webpack5/src/style.css -------------------------------------------------------------------------------- /test-project-webpack5/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project-webpack5/webpack.config.js -------------------------------------------------------------------------------- /test-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project/README.md -------------------------------------------------------------------------------- /test-project/build-utils/webpack.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project/build-utils/webpack.development.js -------------------------------------------------------------------------------- /test-project/build-utils/webpack.production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project/build-utils/webpack.production.js -------------------------------------------------------------------------------- /test-project/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project/index.html -------------------------------------------------------------------------------- /test-project/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project/package-lock.json -------------------------------------------------------------------------------- /test-project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project/package.json -------------------------------------------------------------------------------- /test-project/src/assets/bicycle_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project/src/assets/bicycle_2.jpg -------------------------------------------------------------------------------- /test-project/src/assets/cookie-monster.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project/src/assets/cookie-monster.gif -------------------------------------------------------------------------------- /test-project/src/assets/images/folder.with.dots/inner-folder/bicycle_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project/src/assets/images/folder.with.dots/inner-folder/bicycle_1.jpg -------------------------------------------------------------------------------- /test-project/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project/src/index.js -------------------------------------------------------------------------------- /test-project/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project/src/style.css -------------------------------------------------------------------------------- /test-project/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iampava/imagemin-webp-webpack-plugin/HEAD/test-project/webpack.config.js --------------------------------------------------------------------------------