Skip to content

Console log,error,debug,info stiuations removes from source code during bundling

Notifications You must be signed in to change notification settings

yasemincidem/webpack-clear-console

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

webpack-clear-console

Webpack-clear-console plugin clears console by replacing console functions during bundling

Installation

The plugin is available via npm:

$ npm i webpack-clear-console

Examples

You can see an example at demo/webpack.config.js.

if you dont want to delete a console statement,you can add a comment called "NotClearConsole" as in the following example

function test(){
console.dir({ will: be, removed: "true" })
console.log("except for this one!");/*NotClearConsole*/
}

Note:if there is more than one console statement in source code,console expression that you dont want to delete must add to under the other console statement

Basic

var WebpackClearConsole = require("webpack-clear-console").WebpackClearConsole;

module.exports = {
 plugins: [
    // Other plugins.
    // WebpackClearConsole plugin removes all statements beginning with console.
    new WebpackClearConsole();
  ]
}

About

Console log,error,debug,info stiuations removes from source code during bundling

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published