├── .gitignore ├── .travis.yml ├── README.md ├── package.json ├── src └── index.js ├── test-webpack4 ├── package-lock.json ├── package.json ├── test-image.tiff ├── test.js └── webpack.config.js └── test ├── package-lock.json ├── package.json ├── test-image.tiff ├── test.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekhei/image-maxsize-webpack-loader/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekhei/image-maxsize-webpack-loader/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekhei/image-maxsize-webpack-loader/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekhei/image-maxsize-webpack-loader/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekhei/image-maxsize-webpack-loader/HEAD/src/index.js -------------------------------------------------------------------------------- /test-webpack4/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekhei/image-maxsize-webpack-loader/HEAD/test-webpack4/package-lock.json -------------------------------------------------------------------------------- /test-webpack4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekhei/image-maxsize-webpack-loader/HEAD/test-webpack4/package.json -------------------------------------------------------------------------------- /test-webpack4/test-image.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekhei/image-maxsize-webpack-loader/HEAD/test-webpack4/test-image.tiff -------------------------------------------------------------------------------- /test-webpack4/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekhei/image-maxsize-webpack-loader/HEAD/test-webpack4/test.js -------------------------------------------------------------------------------- /test-webpack4/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekhei/image-maxsize-webpack-loader/HEAD/test-webpack4/webpack.config.js -------------------------------------------------------------------------------- /test/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekhei/image-maxsize-webpack-loader/HEAD/test/package-lock.json -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekhei/image-maxsize-webpack-loader/HEAD/test/package.json -------------------------------------------------------------------------------- /test/test-image.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekhei/image-maxsize-webpack-loader/HEAD/test/test-image.tiff -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekhei/image-maxsize-webpack-loader/HEAD/test/test.js -------------------------------------------------------------------------------- /test/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekhei/image-maxsize-webpack-loader/HEAD/test/webpack.config.js --------------------------------------------------------------------------------