├── .editorconfig ├── .gitignore ├── .travis.yml ├── fixture.ttf ├── index.js ├── license ├── output └── .keepit ├── package.json ├── readme.md └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gulp-fontmin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | output/fixture.* 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gulp-fontmin/HEAD/.travis.yml -------------------------------------------------------------------------------- /fixture.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gulp-fontmin/HEAD/fixture.ttf -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gulp-fontmin/HEAD/index.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gulp-fontmin/HEAD/license -------------------------------------------------------------------------------- /output/.keepit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gulp-fontmin/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gulp-fontmin/HEAD/readme.md -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/gulp-fontmin/HEAD/test.js --------------------------------------------------------------------------------