gulp-uncomment-it
Version:
Uncomment html, js or css
32 lines (19 loc) • 730 B
Markdown
> Uncomment html, js or css with [uncomment-it](https://github.com/stevemao/uncomment-it)
*Issues with the output should be reported on the uncomment-it [issue tracker](https://github.com/stevemao/uncomment-it/issues).*
```
$ npm install --save-dev gulp-uncomment-it
```
```js
var gulp = require('gulp');
var uncommentIt = require('gulp-uncomment-it');
gulp.task('default', function () {
return gulp.src('src/*.html')
.pipe(uncommentIt())
.pipe(gulp.dest('dist'));
});
```
MIT © [Steve Mao](https://github.com/stevemao)