https://github.com/stevemao/gulp-uncomment-it
Uncomment html, js or css
https://github.com/stevemao/gulp-uncomment-it
Last synced: 5 months ago
JSON representation
Uncomment html, js or css
- Host: GitHub
- URL: https://github.com/stevemao/gulp-uncomment-it
- Owner: stevemao
- Created: 2015-05-23T01:21:31.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-23T01:27:56.000Z (about 10 years ago)
- Last Synced: 2025-01-20T16:07:06.993Z (6 months ago)
- Language: JavaScript
- Size: 117 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# gulp-uncomment-it [](https://travis-ci.org/stevemao/gulp-uncomment-it)
> 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).*
## Install
```
$ npm install --save-dev gulp-uncomment-it
```## Usage
```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'));
});
```## License
MIT © [Steve Mao](https://github.com/stevemao)