Generate (S)Html file for icon font created with Gulp
Recent versions of gulp-iconfont emit a glyphs
(or codepoints
< 4.0.0) event (see docs) which should likely be used instead of the workflow described below. However, it will continue to work as expected.
The future of this plugin will be discussed in backflip/gulp-iconfont-css#9.
First, install gulp-iconfont
、 gulp-iconfont-css
、gulp-iconfont-template
as development dependencies:
npm install --save-dev gulp-iconfont gulp-iconfont-css gulp-iconfont-template
Then, add it to your gulpfile.js
. Important: gulp-iconfont-template
has to be inserted before piping the files through gulp-iconfont-css
.
var iconfont = require('gulp-iconfont');
var iconfontCss = require('gulp-iconfont-css');
var iconfontTemplate = require('gulp-iconfont-template');
var fontName = 'Icons';
gulp.task('iconfont', function(){
gulp.src(['app/assets/icons/*.svg'])
.pipe(iconfontTemplate({
fontName: fontName,
path: 'assets/templates/template.html',
targetPath: 'template.html'
}))
.pipe(iconfontCss({
fontName: fontName,
path: 'app/assets/css/templates/_icons.scss',
targetPath: '../../css/_icons.scss',
fontPath: '../../fonts/icons/'
}))
.pipe(iconfont({
fontName: fontName
}))
.pipe(gulp.dest('app/assets/fonts/icons/'));
});
Type: String
The name of the generated font family (required). Important: Has to be identical to iconfont's fontName
option.
Type: String
The template path (optional, defaults to html
template provided with plugin).
Type: String
The path where the (S)html file should be saved, relative to the path used in gulp.dest()
Type: String
Directory of font files relative to generated (S)html file (optional, defaults to ./
).
Type: String
Name of the generated CSS class/placeholder. Default is icon
.
Type: String
The template engine to use (optional, defaults to lodash
).
See https://github.com/visionmedia/consolidate.js/ for available engines. The engine has to be installed before using.