gulp-del-comment-space

gulp plugin for delete comment and space


Keywords
gulp, plugin, tutorial
License
MIT
Install
npm install gulp-del-comment-space@1.0.0

Documentation

Gulp Plugin

Build Status

Delete comments (/* comment */) and blank space

The purpose of plugin is to learn to write Gulp Plugin and publish npm module;

Keep learning, Keep thinking.

Install

$ npm install gulp-del-comment-space -D

Usage

var gulp = require('gulp');
var delCommentSpace = require('gulp-del-comment-space')
gulp.src('path/to/file')
    .pipe(delCommentSpace())
    .pipe(gulp.dest('path/to/dest'))

License

MIT