Skip to content
This repository was archived by the owner on Jan 11, 2019. It is now read-only.

Commit f8637ec

Browse files
committed
drop support for Node.js 0.12 and 0.10
and some meta tweaks
1 parent 5d5772e commit f8637ec

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
language: node_js
22
node_js:
33
- '6'
4-
- '5'
54
- '4'
6-
- '0.12'
7-
- '0.10'

cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import assign from 'lodash.assign';
1010
import npmRunPath from 'npm-run-path';
1111
import isGitClean from 'is-git-clean';
1212
import * as utils from './cli-utils';
13-
import codemods from './codemods.json';
13+
import codemods from './codemods';
1414

1515
function runScripts(scripts, files) {
1616
const spawnOptions = Object.assign({}, {

package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"bin": "cli.js",
1313
"engines": {
14-
"node": ">=0.10.0"
14+
"node": ">=4"
1515
},
1616
"scripts": {
1717
"test": "xo && ava"
@@ -28,12 +28,14 @@
2828
"migrate",
2929
"migrations",
3030
"upgrade",
31-
"transform"
31+
"transform",
32+
"jscodeshift",
33+
"codemods"
3234
],
3335
"dependencies": {
3436
"arrify": "^1.0.1",
3537
"execa": "^0.4.0",
36-
"globby": "^5.0.0",
38+
"globby": "^6.0.0",
3739
"inquirer": "^1.0.2",
3840
"is-git-clean": "^1.0.0",
3941
"jscodeshift": "^0.3.19",
@@ -47,7 +49,7 @@
4749
"update-notifier": "^1.0.0"
4850
},
4951
"devDependencies": {
50-
"ava": "^0.15.1",
52+
"ava": "^0.16.0",
5153
"babel": "^5.8.38",
5254
"xo": "^0.16.0"
5355
},

0 commit comments

Comments
 (0)