* Bump dependencies
* [feature] #38 Count number of matches
* Update make-replacements.js
* [feature] #42 Differentiate number of matches and number of replacements
* [enhance] #56 Support for CWD parameter
* Default config value
* [enhance] #63 Add --quiet flag to supress console output in CLI
* Update success-handler.js
* Update readme and add change log
* Callback for `from`
Added a callback for `from`, which takes file as an argument. Allows the user to tailor the search string according to the filename.
* Minor Changes to Callback for `from`
Additional comments to explain the callback forms.
Reversed minor version bump.
* Changes to documentation for `to` callback
Reverted to original `to` callback example.
Added a separate example example for using the `file` argument.
- Drop deprecated API
- Drop support for Node 4 and 5
- Refactor and clean up code base
- Leverage destructuring
- Option to disable globs (#33)
- Update readme
* Added support for passing Regex into CLI
This will allow for passing the `from`/`to` parameters as regex in the format `\match\g` through the CLI. If pattern does not match a Regex it will fall back to passing through as a `String`.
* - Fixed style inconsistencies
- Added -isRegex parameter to explicitly state ‘from’ parameter is a regex
- Removed regex support from ‘to’ parameter
* Replaced -isRegex with —isRegex and moved to the end of the param list
* Added line and sample syntax for CLI in README
files option can be passed as a glob
When allowEmptyPaths is true, replace-in-file will not throw an error
due to invalid file paths in `files`. Default is false.
Fixes#7