Skip to content

sindresorhus/grunt-strip-json-comments

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Resources

License

Code of conduct

Contributing

Stars

14 stars

Watchers

4 watching

Forks

Packages

 
 
 

Contributors