0.0.2 • Published 7 years ago

gulp-emojify v0.0.2

Weekly downloads
13
License
MIT
Repository
github
Last release
7 years ago

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