Skip to content

Commit 68e0014

Browse files
committed
Support node 6+ only
1 parent 34d0f79 commit 68e0014

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
language: node_js
22
node_js:
33
- "node"
4+
- "7"
45
- "6"
5-
- "5"
6-
- "4"
7-
- "0.12"
86

97
script:
108
- npm run test-cli

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ Display manual. (can be given as only argument)
198198

199199
### Limitations
200200
- RexReplace reads each file fully into memory, so working on your 4Gb log files will probably not be ideal.
201-
- For versions of Node prior to 0.12, please use [the legacy version of RexReplace called rreplace](https://www.npmjs.com/package/rreplace)
201+
- For versions of Node prior to 6, please use version 2.2.x. For versions of Node prior to 0.12, please use [the legacy version of RexReplace called rreplace](https://www.npmjs.com/package/rreplace)
202202

203203
### Quirks
204204
- Per default `` is treated as an alias for `$` in the CLI input. The main reason is for you not to worry about how command line tools often have a special relationship with the `$` char. Your can escape your way out of this old love story, but it often pops up in unexpected ways. Use the `-€` flag if you need to search or replace the actual euro char.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rexreplace",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"description": "Flexible CLI regex replace in files.",
55
"author": "Mathias Rangel Wulff",
66
"license": "MIT",

0 commit comments

Comments
 (0)