├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── Gruntfile.js ├── ISSUE_TEMPLATE.md ├── LICENSE-MIT ├── README.md ├── demo ├── Gruntfile.js ├── dist │ ├── assets │ │ ├── css │ │ │ └── common.css │ │ ├── fonts │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ └── icomoon.woff │ │ ├── img │ │ │ ├── grunt-responsive-images-large.jpg │ │ │ ├── grunt-responsive-images-medium.jpg │ │ │ ├── grunt-responsive-images-small.jpg │ │ │ ├── wedding-large.jpg │ │ │ ├── wedding-medium.jpg │ │ │ └── wedding-small.jpg │ │ └── js │ │ │ ├── common.js │ │ │ ├── matchmedia.js │ │ │ ├── picturefill.js │ │ │ └── srcset.min.js │ └── index.html ├── package.json └── src │ ├── assets │ ├── css │ │ └── common.css │ ├── fonts │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ ├── img │ │ ├── grunt-responsive-images.jpg │ │ └── wedding.jpg │ └── js │ │ ├── common.js │ │ ├── matchmedia.js │ │ ├── picturefill.js │ │ └── srcset.min.js │ └── index.html ├── package.json ├── tasks └── responsive_images.js └── test ├── assets ├── animated │ ├── cat_fun.gif │ └── olaf.gif ├── custom_dest_name │ └── tmnt.png ├── custom_dest_path │ ├── battle-cat.jpg │ └── sub_directory │ │ └── battle-dog.jpg ├── custom_dest_width │ └── cedric_sneer.jpg ├── custom_multiply_unit │ └── scooby-doo.jpg ├── custom_options │ └── panther.jpg ├── default_options │ └── minions.jpg ├── file_wildcard_options │ ├── mario-yoshi.jpg │ ├── mickey-mouse.gif │ └── sonic.png ├── filters │ └── yoshi.png ├── global_quality │ └── night_garden.jpg ├── new_files_only │ ├── darkwing-duck.jpg │ └── gummi-bears.jpg ├── percentage_sizes │ └── captain-planet.jpg ├── percentage_sizes_custom_unit │ └── transformers.jpg ├── pixel_sizes │ ├── magikarp.png │ └── meowth.jpg ├── pixel_sizes_custom_unit │ └── popeye.jpg └── rename │ └── minions.jpg ├── expected ├── animated │ └── olaf-320.gif ├── custom_dest_name │ ├── donnie │ │ └── tmnt.png │ ├── leo │ │ └── tmnt.png │ └── raph │ │ └── tmnt.png ├── custom_dest_path │ ├── 320 │ │ ├── battle-cat.jpg │ │ └── sub_directory │ │ │ └── battle-dog.jpg │ ├── 640 │ │ ├── battle-cat.jpg │ │ └── sub_directory │ │ │ └── battle-dog.jpg │ └── 1024 │ │ ├── battle-cat.jpg │ │ └── sub_directory │ │ └── battle-dog.jpg ├── custom_dest_width │ ├── 320 │ │ └── cedric_sneer.jpg │ ├── 640 │ │ └── cedric_sneer.jpg │ └── 1024 │ │ └── cedric_sneer.jpg ├── custom_multiply_unit │ ├── scooby-doo-10pc.jpg │ ├── scooby-doo-50pcabc12350pc.jpg │ └── scooby-doo-800abc123450.jpg ├── custom_options │ ├── panther-220.jpg │ ├── panther-large.jpg │ ├── panther-large_x2.jpg │ └── panther-small.jpg ├── default_options │ ├── minions-large.jpg │ ├── minions-medium.jpg │ └── minions-small.jpg ├── file_wildcard_options │ ├── mario-yoshi-large.jpg │ ├── mario-yoshi-medium.jpg │ ├── mario-yoshi-small.jpg │ ├── mickey-mouse-large.gif │ ├── mickey-mouse-medium.gif │ ├── mickey-mouse-small.gif │ ├── sonic-large.png │ ├── sonic-medium.png │ └── sonic-small.png ├── filters │ ├── yoshi-1024.png │ ├── yoshi-320.png │ └── yoshi-640.png ├── global_quality │ ├── night_garden-1024.jpg │ ├── night_garden-320.jpg │ └── night_garden-640.jpg ├── new_files_only │ ├── darkwing-duck-100.jpg │ ├── darkwing-duck-200.jpg │ ├── darkwing-duck-300.jpg │ ├── gummi-bears-100.jpg │ ├── gummi-bears-200.jpg │ └── gummi-bears-300.jpg ├── percentage_sizes │ ├── captain-planet-10pc.jpg │ ├── captain-planet-200pcx80pc.jpg │ └── captain-planet-50pcx50pc.jpg ├── percentage_sizes_custom_unit │ ├── transformers-10abc123.jpg │ ├── transformers-200abc123x80abc123.jpg │ └── transformers-50abc123x50abc123.jpg ├── pixel_sizes │ ├── magikarp-10.png │ ├── magikarp-200x500.png │ ├── magikarp-50x50.png │ ├── meowth-10.jpg │ ├── meowth-200x500.jpg │ └── meowth-50x50.jpg ├── pixel_sizes_custom_unit │ ├── popeye-20abc123.jpg │ ├── popeye-500abc123x500abc123.jpg │ └── popeye-80abc123x50abc123.jpg └── rename │ ├── minions-half.jpg │ └── minions.jpg └── responsive_images_test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | demo/ 2 | test/ 3 | tmp/ 4 | .jshintrc 5 | .travis.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/README.md -------------------------------------------------------------------------------- /demo/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/Gruntfile.js -------------------------------------------------------------------------------- /demo/dist/assets/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/dist/assets/css/common.css -------------------------------------------------------------------------------- /demo/dist/assets/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/dist/assets/fonts/icomoon.eot -------------------------------------------------------------------------------- /demo/dist/assets/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/dist/assets/fonts/icomoon.svg -------------------------------------------------------------------------------- /demo/dist/assets/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/dist/assets/fonts/icomoon.ttf -------------------------------------------------------------------------------- /demo/dist/assets/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/dist/assets/fonts/icomoon.woff -------------------------------------------------------------------------------- /demo/dist/assets/img/grunt-responsive-images-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/dist/assets/img/grunt-responsive-images-large.jpg -------------------------------------------------------------------------------- /demo/dist/assets/img/grunt-responsive-images-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/dist/assets/img/grunt-responsive-images-medium.jpg -------------------------------------------------------------------------------- /demo/dist/assets/img/grunt-responsive-images-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/dist/assets/img/grunt-responsive-images-small.jpg -------------------------------------------------------------------------------- /demo/dist/assets/img/wedding-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/dist/assets/img/wedding-large.jpg -------------------------------------------------------------------------------- /demo/dist/assets/img/wedding-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/dist/assets/img/wedding-medium.jpg -------------------------------------------------------------------------------- /demo/dist/assets/img/wedding-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/dist/assets/img/wedding-small.jpg -------------------------------------------------------------------------------- /demo/dist/assets/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/dist/assets/js/common.js -------------------------------------------------------------------------------- /demo/dist/assets/js/matchmedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/dist/assets/js/matchmedia.js -------------------------------------------------------------------------------- /demo/dist/assets/js/picturefill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/dist/assets/js/picturefill.js -------------------------------------------------------------------------------- /demo/dist/assets/js/srcset.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/dist/assets/js/srcset.min.js -------------------------------------------------------------------------------- /demo/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/dist/index.html -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/src/assets/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/src/assets/css/common.css -------------------------------------------------------------------------------- /demo/src/assets/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/src/assets/fonts/icomoon.eot -------------------------------------------------------------------------------- /demo/src/assets/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/src/assets/fonts/icomoon.svg -------------------------------------------------------------------------------- /demo/src/assets/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/src/assets/fonts/icomoon.ttf -------------------------------------------------------------------------------- /demo/src/assets/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/src/assets/fonts/icomoon.woff -------------------------------------------------------------------------------- /demo/src/assets/img/grunt-responsive-images.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/src/assets/img/grunt-responsive-images.jpg -------------------------------------------------------------------------------- /demo/src/assets/img/wedding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/src/assets/img/wedding.jpg -------------------------------------------------------------------------------- /demo/src/assets/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/src/assets/js/common.js -------------------------------------------------------------------------------- /demo/src/assets/js/matchmedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/src/assets/js/matchmedia.js -------------------------------------------------------------------------------- /demo/src/assets/js/picturefill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/src/assets/js/picturefill.js -------------------------------------------------------------------------------- /demo/src/assets/js/srcset.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/src/assets/js/srcset.min.js -------------------------------------------------------------------------------- /demo/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/demo/src/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/package.json -------------------------------------------------------------------------------- /tasks/responsive_images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/tasks/responsive_images.js -------------------------------------------------------------------------------- /test/assets/animated/cat_fun.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/animated/cat_fun.gif -------------------------------------------------------------------------------- /test/assets/animated/olaf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/animated/olaf.gif -------------------------------------------------------------------------------- /test/assets/custom_dest_name/tmnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/custom_dest_name/tmnt.png -------------------------------------------------------------------------------- /test/assets/custom_dest_path/battle-cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/custom_dest_path/battle-cat.jpg -------------------------------------------------------------------------------- /test/assets/custom_dest_path/sub_directory/battle-dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/custom_dest_path/sub_directory/battle-dog.jpg -------------------------------------------------------------------------------- /test/assets/custom_dest_width/cedric_sneer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/custom_dest_width/cedric_sneer.jpg -------------------------------------------------------------------------------- /test/assets/custom_multiply_unit/scooby-doo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/custom_multiply_unit/scooby-doo.jpg -------------------------------------------------------------------------------- /test/assets/custom_options/panther.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/custom_options/panther.jpg -------------------------------------------------------------------------------- /test/assets/default_options/minions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/default_options/minions.jpg -------------------------------------------------------------------------------- /test/assets/file_wildcard_options/mario-yoshi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/file_wildcard_options/mario-yoshi.jpg -------------------------------------------------------------------------------- /test/assets/file_wildcard_options/mickey-mouse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/file_wildcard_options/mickey-mouse.gif -------------------------------------------------------------------------------- /test/assets/file_wildcard_options/sonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/file_wildcard_options/sonic.png -------------------------------------------------------------------------------- /test/assets/filters/yoshi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/filters/yoshi.png -------------------------------------------------------------------------------- /test/assets/global_quality/night_garden.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/global_quality/night_garden.jpg -------------------------------------------------------------------------------- /test/assets/new_files_only/darkwing-duck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/new_files_only/darkwing-duck.jpg -------------------------------------------------------------------------------- /test/assets/new_files_only/gummi-bears.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/new_files_only/gummi-bears.jpg -------------------------------------------------------------------------------- /test/assets/percentage_sizes/captain-planet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/percentage_sizes/captain-planet.jpg -------------------------------------------------------------------------------- /test/assets/percentage_sizes_custom_unit/transformers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/percentage_sizes_custom_unit/transformers.jpg -------------------------------------------------------------------------------- /test/assets/pixel_sizes/magikarp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/pixel_sizes/magikarp.png -------------------------------------------------------------------------------- /test/assets/pixel_sizes/meowth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/pixel_sizes/meowth.jpg -------------------------------------------------------------------------------- /test/assets/pixel_sizes_custom_unit/popeye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/pixel_sizes_custom_unit/popeye.jpg -------------------------------------------------------------------------------- /test/assets/rename/minions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/assets/rename/minions.jpg -------------------------------------------------------------------------------- /test/expected/animated/olaf-320.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/animated/olaf-320.gif -------------------------------------------------------------------------------- /test/expected/custom_dest_name/donnie/tmnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/custom_dest_name/donnie/tmnt.png -------------------------------------------------------------------------------- /test/expected/custom_dest_name/leo/tmnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/custom_dest_name/leo/tmnt.png -------------------------------------------------------------------------------- /test/expected/custom_dest_name/raph/tmnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/custom_dest_name/raph/tmnt.png -------------------------------------------------------------------------------- /test/expected/custom_dest_path/1024/battle-cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/custom_dest_path/1024/battle-cat.jpg -------------------------------------------------------------------------------- /test/expected/custom_dest_path/1024/sub_directory/battle-dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/custom_dest_path/1024/sub_directory/battle-dog.jpg -------------------------------------------------------------------------------- /test/expected/custom_dest_path/320/battle-cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/custom_dest_path/320/battle-cat.jpg -------------------------------------------------------------------------------- /test/expected/custom_dest_path/320/sub_directory/battle-dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/custom_dest_path/320/sub_directory/battle-dog.jpg -------------------------------------------------------------------------------- /test/expected/custom_dest_path/640/battle-cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/custom_dest_path/640/battle-cat.jpg -------------------------------------------------------------------------------- /test/expected/custom_dest_path/640/sub_directory/battle-dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/custom_dest_path/640/sub_directory/battle-dog.jpg -------------------------------------------------------------------------------- /test/expected/custom_dest_width/1024/cedric_sneer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/custom_dest_width/1024/cedric_sneer.jpg -------------------------------------------------------------------------------- /test/expected/custom_dest_width/320/cedric_sneer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/custom_dest_width/320/cedric_sneer.jpg -------------------------------------------------------------------------------- /test/expected/custom_dest_width/640/cedric_sneer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/custom_dest_width/640/cedric_sneer.jpg -------------------------------------------------------------------------------- /test/expected/custom_multiply_unit/scooby-doo-10pc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/custom_multiply_unit/scooby-doo-10pc.jpg -------------------------------------------------------------------------------- /test/expected/custom_multiply_unit/scooby-doo-50pcabc12350pc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/custom_multiply_unit/scooby-doo-50pcabc12350pc.jpg -------------------------------------------------------------------------------- /test/expected/custom_multiply_unit/scooby-doo-800abc123450.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/custom_multiply_unit/scooby-doo-800abc123450.jpg -------------------------------------------------------------------------------- /test/expected/custom_options/panther-220.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/custom_options/panther-220.jpg -------------------------------------------------------------------------------- /test/expected/custom_options/panther-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/custom_options/panther-large.jpg -------------------------------------------------------------------------------- /test/expected/custom_options/panther-large_x2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/custom_options/panther-large_x2.jpg -------------------------------------------------------------------------------- /test/expected/custom_options/panther-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/custom_options/panther-small.jpg -------------------------------------------------------------------------------- /test/expected/default_options/minions-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/default_options/minions-large.jpg -------------------------------------------------------------------------------- /test/expected/default_options/minions-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/default_options/minions-medium.jpg -------------------------------------------------------------------------------- /test/expected/default_options/minions-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/default_options/minions-small.jpg -------------------------------------------------------------------------------- /test/expected/file_wildcard_options/mario-yoshi-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/file_wildcard_options/mario-yoshi-large.jpg -------------------------------------------------------------------------------- /test/expected/file_wildcard_options/mario-yoshi-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/file_wildcard_options/mario-yoshi-medium.jpg -------------------------------------------------------------------------------- /test/expected/file_wildcard_options/mario-yoshi-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/file_wildcard_options/mario-yoshi-small.jpg -------------------------------------------------------------------------------- /test/expected/file_wildcard_options/mickey-mouse-large.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/file_wildcard_options/mickey-mouse-large.gif -------------------------------------------------------------------------------- /test/expected/file_wildcard_options/mickey-mouse-medium.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/file_wildcard_options/mickey-mouse-medium.gif -------------------------------------------------------------------------------- /test/expected/file_wildcard_options/mickey-mouse-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/file_wildcard_options/mickey-mouse-small.gif -------------------------------------------------------------------------------- /test/expected/file_wildcard_options/sonic-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/file_wildcard_options/sonic-large.png -------------------------------------------------------------------------------- /test/expected/file_wildcard_options/sonic-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/file_wildcard_options/sonic-medium.png -------------------------------------------------------------------------------- /test/expected/file_wildcard_options/sonic-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/file_wildcard_options/sonic-small.png -------------------------------------------------------------------------------- /test/expected/filters/yoshi-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/filters/yoshi-1024.png -------------------------------------------------------------------------------- /test/expected/filters/yoshi-320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/filters/yoshi-320.png -------------------------------------------------------------------------------- /test/expected/filters/yoshi-640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/filters/yoshi-640.png -------------------------------------------------------------------------------- /test/expected/global_quality/night_garden-1024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/global_quality/night_garden-1024.jpg -------------------------------------------------------------------------------- /test/expected/global_quality/night_garden-320.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/global_quality/night_garden-320.jpg -------------------------------------------------------------------------------- /test/expected/global_quality/night_garden-640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/global_quality/night_garden-640.jpg -------------------------------------------------------------------------------- /test/expected/new_files_only/darkwing-duck-100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/new_files_only/darkwing-duck-100.jpg -------------------------------------------------------------------------------- /test/expected/new_files_only/darkwing-duck-200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/new_files_only/darkwing-duck-200.jpg -------------------------------------------------------------------------------- /test/expected/new_files_only/darkwing-duck-300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/new_files_only/darkwing-duck-300.jpg -------------------------------------------------------------------------------- /test/expected/new_files_only/gummi-bears-100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/new_files_only/gummi-bears-100.jpg -------------------------------------------------------------------------------- /test/expected/new_files_only/gummi-bears-200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/new_files_only/gummi-bears-200.jpg -------------------------------------------------------------------------------- /test/expected/new_files_only/gummi-bears-300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/new_files_only/gummi-bears-300.jpg -------------------------------------------------------------------------------- /test/expected/percentage_sizes/captain-planet-10pc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/percentage_sizes/captain-planet-10pc.jpg -------------------------------------------------------------------------------- /test/expected/percentage_sizes/captain-planet-200pcx80pc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/percentage_sizes/captain-planet-200pcx80pc.jpg -------------------------------------------------------------------------------- /test/expected/percentage_sizes/captain-planet-50pcx50pc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/percentage_sizes/captain-planet-50pcx50pc.jpg -------------------------------------------------------------------------------- /test/expected/percentage_sizes_custom_unit/transformers-10abc123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/percentage_sizes_custom_unit/transformers-10abc123.jpg -------------------------------------------------------------------------------- /test/expected/percentage_sizes_custom_unit/transformers-200abc123x80abc123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/percentage_sizes_custom_unit/transformers-200abc123x80abc123.jpg -------------------------------------------------------------------------------- /test/expected/percentage_sizes_custom_unit/transformers-50abc123x50abc123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/percentage_sizes_custom_unit/transformers-50abc123x50abc123.jpg -------------------------------------------------------------------------------- /test/expected/pixel_sizes/magikarp-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/pixel_sizes/magikarp-10.png -------------------------------------------------------------------------------- /test/expected/pixel_sizes/magikarp-200x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/pixel_sizes/magikarp-200x500.png -------------------------------------------------------------------------------- /test/expected/pixel_sizes/magikarp-50x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/pixel_sizes/magikarp-50x50.png -------------------------------------------------------------------------------- /test/expected/pixel_sizes/meowth-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/pixel_sizes/meowth-10.jpg -------------------------------------------------------------------------------- /test/expected/pixel_sizes/meowth-200x500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/pixel_sizes/meowth-200x500.jpg -------------------------------------------------------------------------------- /test/expected/pixel_sizes/meowth-50x50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/pixel_sizes/meowth-50x50.jpg -------------------------------------------------------------------------------- /test/expected/pixel_sizes_custom_unit/popeye-20abc123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/pixel_sizes_custom_unit/popeye-20abc123.jpg -------------------------------------------------------------------------------- /test/expected/pixel_sizes_custom_unit/popeye-500abc123x500abc123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/pixel_sizes_custom_unit/popeye-500abc123x500abc123.jpg -------------------------------------------------------------------------------- /test/expected/pixel_sizes_custom_unit/popeye-80abc123x50abc123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/pixel_sizes_custom_unit/popeye-80abc123x50abc123.jpg -------------------------------------------------------------------------------- /test/expected/rename/minions-half.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/rename/minions-half.jpg -------------------------------------------------------------------------------- /test/expected/rename/minions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/expected/rename/minions.jpg -------------------------------------------------------------------------------- /test/responsive_images_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andismith/grunt-responsive-images/HEAD/test/responsive_images_test.js --------------------------------------------------------------------------------