Skip to content

Strip comments from JSON. Lets you use comments in your JSON files!

License

Notifications You must be signed in to change notification settings

letjson/gulp-strip-json-comments

 
 

Repository files navigation

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

const gulp = require('gulp');
const stripJsonComments = require('gulp-strip-json-comments');

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

API

stripJsonComments(options?)

options

Type: object

See the strip-json-comments options.

About

Strip comments from JSON. Lets you use comments in your JSON files!

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%