Disallow dependency cycles (#13442)

This commit is contained in:
Nicolò Ribaudo
2021-06-10 00:48:57 +02:00
committed by GitHub
parent d3f4c22c28
commit a59522df83
4 changed files with 11 additions and 6 deletions

View File

@@ -13,11 +13,13 @@
"access": "public"
},
"main": "./lib/index.js",
"TODO": "The @babel/traverse dependency is only needed for the NodePath TS type. After converting @babel/core to TS we can import NodePath from there.",
"dependencies": {
"@babel/traverse": "workspace:^7.13.15",
"@babel/types": "workspace:^7.13.16"
},
"TODO": "The @babel/traverse dependency is only needed for the NodePath TS type. We can consider exporting it from @babel/core.",
"devDependencies": {
"@babel/traverse": "workspace:*"
},
"engines": {
"node": ">=6.9.0"
},