2.0.0 • Published 6 years ago

grunt-strip-debug v2.0.0

Weekly downloads
79
License
MIT
Repository
github
Last release
6 years ago

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