Package Exports
- groundskeeper-brunch
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (groundskeeper-brunch) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
groundskeeper-brunch 
Brunch plugin to Clean javascript files, remove console.log ect... using groundskeeper.
Installation
Install the plugin via npm with
npm install --save groundskeeper-brunchUsage
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