├── .editorconfig ├── .gitignore ├── .npmignore ├── README.md ├── index.js ├── lib └── sprite.js ├── package.json └── test ├── css └── style-willerce.css ├── output ├── style-willerce.css ├── style-willerce.png └── style-willerce@2x.png ├── slice ├── excel.png ├── excel@2x.png ├── project.png ├── project@2x.png ├── word.png └── word@2x.png └── tmtsprite.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weixin/gulp-tmtsprite/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weixin/gulp-tmtsprite/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weixin/gulp-tmtsprite/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weixin/gulp-tmtsprite/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weixin/gulp-tmtsprite/HEAD/index.js -------------------------------------------------------------------------------- /lib/sprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weixin/gulp-tmtsprite/HEAD/lib/sprite.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weixin/gulp-tmtsprite/HEAD/package.json -------------------------------------------------------------------------------- /test/css/style-willerce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weixin/gulp-tmtsprite/HEAD/test/css/style-willerce.css -------------------------------------------------------------------------------- /test/output/style-willerce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weixin/gulp-tmtsprite/HEAD/test/output/style-willerce.css -------------------------------------------------------------------------------- /test/output/style-willerce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weixin/gulp-tmtsprite/HEAD/test/output/style-willerce.png -------------------------------------------------------------------------------- /test/output/style-willerce@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weixin/gulp-tmtsprite/HEAD/test/output/style-willerce@2x.png -------------------------------------------------------------------------------- /test/slice/excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weixin/gulp-tmtsprite/HEAD/test/slice/excel.png -------------------------------------------------------------------------------- /test/slice/excel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weixin/gulp-tmtsprite/HEAD/test/slice/excel@2x.png -------------------------------------------------------------------------------- /test/slice/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weixin/gulp-tmtsprite/HEAD/test/slice/project.png -------------------------------------------------------------------------------- /test/slice/project@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weixin/gulp-tmtsprite/HEAD/test/slice/project@2x.png -------------------------------------------------------------------------------- /test/slice/word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weixin/gulp-tmtsprite/HEAD/test/slice/word.png -------------------------------------------------------------------------------- /test/slice/word@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weixin/gulp-tmtsprite/HEAD/test/slice/word@2x.png -------------------------------------------------------------------------------- /test/tmtsprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weixin/gulp-tmtsprite/HEAD/test/tmtsprite.js --------------------------------------------------------------------------------