gulp-emojify
v0.0.2
Published
Add emoji/s to your message/s
Downloads
5
Maintainers
Readme
gulp-emojify
Add emoji/s to your message/s.
Install
$ npm install --save-dev gulp-emojify
Usage
var gulp = require('gulp');
var emojify = require('gulp-emojify');
gulp.task('default', function () {
gulp.src('index.js', {
base: './'
})
.pipe(emojify('All good. Go drink a :beer:'));
});
var gulp = require('gulp');
var emojify = require('gulp-emojify');
gulp.task('default', function () {
gulp.src('index.js', {
base: './'
})
.pipe(plumber({
errorHandler: emojify.onError('Error: Grab some :coffee: and fix it!')
}))
.pipe(emojify(null))
.pipe(emojify('All good. Go drink a cup of :beer:'));
});
API
emojify(options)
options
None.
License
MIT © Pedro Sampaio