0.0.2 • Published 8 years ago

fontmin-concat v0.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

fontmin-concat Build Status

concat fontmin plugin

Install

$ npm install --save fontmin-concat

Usage

var Fontmin = require('fontmin');
var concat = require('fontmin-concat');

var fontmin = new Fontmin()
    .src('fonts/*.ttf')
    .use(concat('new.ttf'))
    .dest('build/fonts')
    

fontmin.run(function (err, files) {
    if (err) {
        throw err;
    }

    console.log('Files concat successfully!'); 
});

Related