Package Exports
- gulp-decomment
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-decomment) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-decomment
Uses decomment to remove comments from JSON, JavaScript, CSS, HTML, etc.
Installing
$ npm i gulp-decomment
Testing
$ npm test
Testing with coverage:
$ npm run coverage
Usage
const gulp = require('gulp');
const decomment = require('gulp-decomment');
gulp.task('default', () =>
gulp.src('input.js')
.pipe(decomment({trim: true}))
.pipe(gulp.dest('dest'))
);
API
Available methods, according to decomment API:
- decomment([options])
- decomment.text([options])
- decomment.html([options])
License
Copyright © 2021 Vitaly Tomilov; Released under the MIT license.