Skip to content

Commit c895c68

Browse files
fix(deps): update dependencies
Also removes the vestiges of from before TypeScript & jest.
1 parent 35ff84a commit c895c68

File tree

8 files changed

+54
-914
lines changed

8 files changed

+54
-914
lines changed

.babelrc

Lines changed: 0 additions & 11 deletions
This file was deleted.

package.json

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,21 +43,14 @@
4343
]
4444
},
4545
"dependencies": {
46-
"@babel/parser": "^7.1.6",
46+
"@babel/types": "^7.6.1",
47+
"@codemod/parser": "^1.0.3",
4748
"coffee-lex": "^9.1.5",
4849
"decaffeinate-coffeescript": "1.12.7-patch.3",
4950
"decaffeinate-coffeescript2": "2.2.1-patch.5",
5051
"lines-and-columns": "^1.1.6"
5152
},
5253
"devDependencies": {
53-
"@babel/core": "^7.0.0",
54-
"@babel/plugin-external-helpers": "^7.0.0",
55-
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
56-
"@babel/plugin-syntax-flow": "^7.0.0",
57-
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
58-
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
59-
"@babel/preset-env": "^7.0.0",
60-
"@babel/register": "^7.0.0",
6154
"@types/jest": "^24.0.16",
6255
"@types/node": "12.7.7",
6356
"@typescript-eslint/eslint-plugin": "^2.2.0",

script/print-ast.js

Lines changed: 0 additions & 140 deletions
This file was deleted.

script/write-example-asts.js

Lines changed: 0 additions & 48 deletions
This file was deleted.

src/util/parseNumber.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { parse } from '@babel/parser';
1+
import { parse } from '@codemod/parser';
22
import { ExpressionStatement, NumericLiteral } from '@babel/types';
33

44
/**

src/util/parseRegExp.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { parse } from '@babel/parser';
1+
import { parse } from '@codemod/parser';
22
import { ExpressionStatement, RegExpLiteral } from '@babel/types';
33

44
/**

src/util/parseString.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { parse } from '@babel/parser';
1+
import { parse } from '@codemod/parser';
22
import { ExpressionStatement, StringLiteral } from '@babel/types';
33

44
/**

0 commit comments

Comments
 (0)