gulp-tipograph
Version:
Tipograph plugin for Gulp
40 lines (23 loc) • 728 B
Markdown
> [Tipograph](https://github.com/nevyk/tipograph) plugin for Gulp
```bash
$ npm install --save-dev gulp-tipograph
```
```js
var gulp = require('gulp');
var tipograph = require('gulp-tipograph');
gulp.task('default', function () {
return gulp.src('path/to/files/**/*')
.pipe(tipograph(/* options */))
.pipe(gulp.dest('dist'));
});
```
Options object is exactly the same as in *tipograph* itself. See its
[](https://github.com/pnevyk/tipograph/blob/master/README.md).
Gulp-tipograph is licensed under [MIT](LICENSE). Feel free to use it, contribute or spread the word.