gulp-emojify

0.0.2 • Public • Published

gulp-emojify

Build Status

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:'));
});

emojify

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:'));
});
 

emojify

API

emojify(options)

options

None.

License

MIT © Pedro Sampaio

Dependencies (4)

Dev Dependencies (3)

Package Sidebar

Install

npm i gulp-emojify

Weekly Downloads

4

Version

0.0.2

License

MIT

Last publish

Collaborators

  • oitozero