Skip to content

Commit 71f83ca

Browse files
committed
Update antlr runtime
1 parent c9a1a69 commit 71f83ca

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+12925
-25637
lines changed

.babelrc

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
{
2-
"presets": ["env"],
3-
"plugins": [
4-
["babel-plugin-inline-import", {
2+
"presets": ["@babel/env"],
3+
"plugins": [
4+
[
5+
"babel-plugin-inline-import",
6+
{
57
"extensions": [".tokens"]
6-
}]
7-
]
8+
}
9+
],
10+
"@babel/plugin-proposal-class-properties"
11+
]
812
}

.prettierrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"semi": false,
3+
"singleQuote": true
4+
}

package-lock.json

Lines changed: 3688 additions & 4173 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"prettier": "find src -name *.js | egrep -v '^src/(lib|antlr4)/' | xargs prettier --no-semi --single-quote --write",
1313
"eslint": "eslint src",
1414
"pretest": "eslint src && tslint-config-prettier-check ./tslint.json",
15-
"test": "nyc mocha --require babel-register",
15+
"test": "nyc mocha --require @babel/register",
1616
"tslint": "tslint-config-prettier-check ./tslint.json"
1717
},
1818
"authors": [
@@ -28,12 +28,13 @@
2828
},
2929
"license": "MIT",
3030
"devDependencies": {
31+
"@babel/cli": "^7.12.1",
3132
"@babel/core": "^7.9.0",
32-
"@babel/preset-env": "^7.9.0",
33-
"babel-cli": "^6.26.0",
33+
"@babel/plugin-proposal-class-properties": "^7.12.1",
34+
"@babel/preset-env": "^7.12.1",
35+
"@babel/register": "^7.12.1",
3436
"babel-loader": "^8.1.0",
3537
"babel-plugin-inline-import": "^3.0.0",
36-
"babel-preset-env": "^1.7.0",
3738
"chai": "^4.2.0",
3839
"eslint": "^6.2.2",
3940
"eslint-plugin-import": "^2.18.2",
@@ -55,5 +56,8 @@
5556
"include": [
5657
"src/*.js"
5758
]
59+
},
60+
"dependencies": {
61+
"antlr4": "^4.8.0"
5862
}
5963
}

0 commit comments

Comments
 (0)