walc
Version:
Removes 'console' or 'alert' functions in your scripts
35 lines (23 loc) • 820 B
Markdown
# Walc
Warning, Alert, Log, Console ect...
Removes `console` or `alert` functions in your scripts.
## Install
```console
$ npm install walc
```
## Usage
```javascript
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. `console` or `alert` for keys, and values has 3 possibilities : `remove`, `comment` or `ignore` (default).
## Notes
This script ignores `console` and `alert` already commented.