1.4.3 • Published 10 years ago
walc v1.4.3
Walc
Warning, Alert, Log, Console ect...
Removes console or alert functions in your scripts.
Install
$ npm install walcUsage
var walc = require('walc'),
w = walc({
path: './js/*.js',
dest: './bin/',
methods: {alert: 'remove', console: 'comment'}
})
w.run()Options
path: String or Array. ex :"path/to/directory/*.js"or"path/to/directory/script.js"or["path/to/directory/*.js"]or["path/to/directory/script.js"]dest: String. ex :"path/to/export/destination", default :"dest/"methods: Object.consoleoralertfor keys, and values has 3 possibilities :remove,commentorignore(default).
Notes
This script ignores console and alert already commented.