grunt-console-clean

0.3.5 • Public • Published

grunt-console-clean

NPM

Build Status devdependencies

Grunt plugin to clean up code from console object. All meet object are commented out e.g. /*console.log('test');*/

Please note: All used console object in your code should be end with ";" otherwise plugin won't work properly.

Getting Started

This plugin requires Grunt >=0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-console-clean --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-console-clean');

This plugin was designed to work with Grunt 0.4.x. If you're still using grunt v0.3.x it's strongly recommended that you upgrade

Console clean

Task targets, files and options may be specified according to the grunt Configuring tasks guide.

Options

variables

Name: allows Type: array

This option is used to determine "console" object to be unchanged.

options : {
   allows: ["log", "warn"]
}

Name: strategy Type: function

This option is used to modify/comment-out found console object. It allows to change strategy of commeting from "/**/" to e.g. "//".

options : {
  strategy: function (content) {
   return '//' + content;
  }
}

Usage Examples

Comment all console objects

Run this task with the grunt console-clean:all command.

all: {
  files : [
    { src: ['file.js'], dest: 'file.js' }
  ]
},

Leave "console.warn" objects

Run this task with the grunt console-clean:keepWarn command.

keepWarn: {
  options: {
    allows: ["warn"]
  },
  files : [
    { src: ['file.js'], dest: 'file.js' }
  ]
},

Release History

  • 2016-03-09 v0.3.5 Updated node dependencies.
  • 2016-02-27 v0.3.4 Fixed error with files which cannot be processed.
  • 2016-02-27 v0.3.3 Updated node dependencies.
  • 2015-07-14 v0.3.2 Updated keywords.
  • 2015-07-14 v0.3.1 Fixed bug with "allows" option.
  • 2015-07-14 v0.3.0 Added cleaning objects "window.console".
  • 2015-07-13 v0.2.1 Added "strategy" option.
  • 2015-07-11 v0.1.1 Updated dev dependencies.
  • 2015-07-11 v0.1.0 First version of plugin.

Task submitted by Tomasz Czechowski

This file was generated on Sat July 11 2015 12:47:00.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.3.5
    67
    • latest

Version History

Package Sidebar

Install

npm i grunt-console-clean

Weekly Downloads

67

Version

0.3.5

License

MIT

Last publish

Collaborators

  • masteradm