Skip to content

Brunch plugin to Clean javascript files, remove console.log ect... using groundskeeper

Notifications You must be signed in to change notification settings

aliel/groundskeeper-brunch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

groundskeeper-brunch Build Status

Brunch plugin to remove console statements, debugger and specific blocks of code using groundskeeper.

Installation

Install the plugin via npm with

npm install --save groundskeeper-brunch

If you are using uglify-js-brunch or other JS obfuscation packages make sure that groundskeeper-brunch is defined before them in your package.json.

Usage

To specify groundskeeper options, use config.plugins.groundskeeper object, for example:

config =
  plugins:
    groundskeeper:
      console: true,                          // Keep console logs
      debugger: true                          // Keep debugger; statements
      pragmas: ['validation', 'development'], // Keep pragmas with the following identifiers
      namespace: 'App.logger'                 // Besides console also remove functions in the given namespace,
      replace: '0'

See groundskeeper for more options

About

Brunch plugin to Clean javascript files, remove console.log ect... using groundskeeper

Resources

Stars

Watchers

Forks

Packages

No packages published