grunt-strip-json-comments

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


Keywords
gruntplugin, json, strip, remove, delete, trim, comments, multiline, parse, config, configuration, conf, settings, util, env, environment
License
MIT
Install
npm install grunt-strip-json-comments@2.2.0

Documentation

grunt-strip-json-comments

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

Using the strip-json-comments module.

This is now possible:

{
	// rainbows
	"unicorn": /* ❤ */ "cake"
}

Install

$ npm install --save-dev grunt-strip-json-comments

Usage

require('load-grunt-tasks')(grunt); // npm install --save-dev load-grunt-tasks

grunt.initConfig({
	stripJsonComments: {
		dist: {
			options: {
				whitespace: true
			},
			files: {
				'without.json': 'with-comments.json'
			}
		}
	}
});

grunt.registerTask('default', ['stripJsonComments']);

Options

See the strip-json-comments options.

License

MIT © Sindre Sorhus