5.0.0 • Published 6 months ago

gulp-strip-json-comments v5.0.0

Weekly downloads
121
License
MIT
Repository
github
Last release
6 months ago

gulp-strip-json-comments

Strip comments from JSON with strip-json-comments Lets you use comments in your JSON files!

Install

npm install --save-dev gulp-strip-json-comments

Usage

import gulp from 'gulp';
import stripJsonComments from 'gulp-strip-json-comments';

export default () => (
	gulp.src('src/config.json')
		.pipe(stripJsonComments())
		.pipe(gulp.dest('dist'))
);

API

stripJsonComments(options?)

options

Type: object

See the strip-json-comments options.