├── .gitignore ├── .npmignore ├── .travis.yml ├── HISTORY.md ├── README.md ├── README_CN.md ├── package.json ├── src ├── defer.js ├── fontGenerator.js ├── index.js ├── multiStream.js └── svgFontParser.js ├── template ├── html.handlebars └── svg.handlebars └── test ├── builder ├── _index.js ├── dest │ └── .hodor └── test.svg ├── mocha.opts └── parser ├── _index.js └── test.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmyu/iconfont-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmyu/iconfont-builder/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmyu/iconfont-builder/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmyu/iconfont-builder/HEAD/HISTORY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmyu/iconfont-builder/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmyu/iconfont-builder/HEAD/README_CN.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmyu/iconfont-builder/HEAD/package.json -------------------------------------------------------------------------------- /src/defer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmyu/iconfont-builder/HEAD/src/defer.js -------------------------------------------------------------------------------- /src/fontGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmyu/iconfont-builder/HEAD/src/fontGenerator.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmyu/iconfont-builder/HEAD/src/index.js -------------------------------------------------------------------------------- /src/multiStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmyu/iconfont-builder/HEAD/src/multiStream.js -------------------------------------------------------------------------------- /src/svgFontParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmyu/iconfont-builder/HEAD/src/svgFontParser.js -------------------------------------------------------------------------------- /template/html.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmyu/iconfont-builder/HEAD/template/html.handlebars -------------------------------------------------------------------------------- /template/svg.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmyu/iconfont-builder/HEAD/template/svg.handlebars -------------------------------------------------------------------------------- /test/builder/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmyu/iconfont-builder/HEAD/test/builder/_index.js -------------------------------------------------------------------------------- /test/builder/dest/.hodor: -------------------------------------------------------------------------------- 1 | Just hold the place. -------------------------------------------------------------------------------- /test/builder/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmyu/iconfont-builder/HEAD/test/builder/test.svg -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmyu/iconfont-builder/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/parser/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmyu/iconfont-builder/HEAD/test/parser/_index.js -------------------------------------------------------------------------------- /test/parser/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmyu/iconfont-builder/HEAD/test/parser/test.svg --------------------------------------------------------------------------------