npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

grunt-strip-debug

2.0.0

@sindresorhus

npmHomeRepoSnykSocket
Downloads:8
$ npm install grunt-strip-debug
DailyWeeklyMonthlyYearly

grunt-strip-debug Build Status

Strip console, alert, and debugger statements from JavaScript code with strip-debug

Install

$ npm install --save-dev grunt-strip-debug

Usage

require('load-grunt-tasks')(grunt);

grunt.initConfig({
	stripDebug: {
		dist: {
			files: {
				'dist/app.js': 'src/app.js'
			}
		}
	}
});

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

License

MIT © Sindre Sorhus