New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

grunt-console-clean

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-console-clean

Plugin for grunt to clean up code from console object

  • 0.3.5
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
54
decreased by-22.86%
Maintainers
1
Weekly downloads
 
Created
Source

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.

Keywords

FAQs

Package last updated on 09 Mar 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc