Skip to content

Commit

Permalink
Add missing dev dependencies (#10847)
Browse files Browse the repository at this point in the history
* chore: declare eslint-import-resolver-node dependency

# Conflicts:
#	yarn.lock

* chore: add devDependencies

* Add browserify devDep to babel-register

# Conflicts:
#	packages/babel-register/package.json
#	yarn.lock

* chore: resolve eslint-scope to 5.0.0
  • Loading branch information
JLHwung authored and nicolo-ribaudo committed Dec 9, 2019
1 parent 2884bac commit f02e5e6
Show file tree
Hide file tree
Showing 5 changed files with 1,185 additions and 914 deletions.
4 changes: 3 additions & 1 deletion package.json
Expand Up @@ -40,6 +40,7 @@
"enhanced-resolve": "^3.0.0",
"eslint": "^6.0.1",
"eslint-config-babel": "^9.0.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-flowtype": "^3.8.2",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-prettier": "^3.1.0",
Expand Down Expand Up @@ -77,7 +78,8 @@
"typescript": "^3.6.3"
},
"resolutions": {
"@lerna/**/@lerna/collect-updates": "https://github.com/babel/lerna.git#babel-collect-updates"
"@lerna/**/@lerna/collect-updates": "https://github.com/babel/lerna.git#babel-collect-updates",
"eslint-scope": "^5.0.0"
},
"engines": {
"node": ">= 6.9.0 < 14.0.0",
Expand Down
3 changes: 2 additions & 1 deletion packages/babel-cli/package.json
Expand Up @@ -36,7 +36,8 @@
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/helper-fixtures": "^7.6.3"
"@babel/helper-fixtures": "^7.6.3",
"rimraf": "^3.0.0"
},
"bin": {
"babel": "./bin/babel.js",
Expand Down
4 changes: 3 additions & 1 deletion packages/babel-node/package.json
Expand Up @@ -33,8 +33,10 @@
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/helper-fixtures": "^7.6.3",
"@babel/runtime": "^7.7.4",
"fs-readdir-recursive": "^1.0.0",
"make-dir": "^2.1.0"
"make-dir": "^2.1.0",
"rimraf": "^3.0.0"
},
"bin": {
"babel-node": "./bin/babel-node.js"
Expand Down
2 changes: 2 additions & 0 deletions packages/babel-register/package.json
Expand Up @@ -24,6 +24,8 @@
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.4",
"browserify": "16.5.0",
"default-require-extensions": "^2.0.0"
}
}

0 comments on commit f02e5e6

Please sign in to comment.