├── .gitignore ├── LICENSE ├── README.md ├── gulpfile.js ├── index.js ├── package.json └── test └── img ├── bird-lost.png └── default-avatar.png /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paper/gulp-tinypng-nokey/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paper/gulp-tinypng-nokey/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paper/gulp-tinypng-nokey/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paper/gulp-tinypng-nokey/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paper/gulp-tinypng-nokey/HEAD/package.json -------------------------------------------------------------------------------- /test/img/bird-lost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paper/gulp-tinypng-nokey/HEAD/test/img/bird-lost.png -------------------------------------------------------------------------------- /test/img/default-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paper/gulp-tinypng-nokey/HEAD/test/img/default-avatar.png --------------------------------------------------------------------------------