Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stevemao/gulp-uncomment-it
Uncomment html, js or css
https://github.com/stevemao/gulp-uncomment-it
Last synced: 6 days 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 (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-23T01:27:56.000Z (over 9 years ago)
- Last Synced: 2024-11-07T13:53:56.261Z (about 2 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 [![Build Status](https://travis-ci.org/stevemao/gulp-uncomment-it.svg?branch=master)](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)