@babel/traverse 7.4.4 → 7.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of @babel/traverse might be problematic. Click here for more details.
- package/lib/path/context.js +1 -1
- package/package.json +3 -3
package/lib/path/context.js
CHANGED
@@ -53,7 +53,7 @@ function _call(fns) {
|
|
53
53
|
const ret = fn.call(this.state, this, this.state);
|
54
54
|
|
55
55
|
if (ret && typeof ret === "object" && typeof ret.then === "function") {
|
56
|
-
throw new Error(`You appear to be using a plugin with an async traversal visitor, ` + `which your current version of Babel does not support
|
56
|
+
throw new Error(`You appear to be using a plugin with an async traversal visitor, ` + `which your current version of Babel does not support. ` + `If you're using a published plugin, you may need to upgrade ` + `your @babel/core version.`);
|
57
57
|
}
|
58
58
|
|
59
59
|
if (ret) {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babel/traverse",
|
3
|
-
"version": "7.4.
|
3
|
+
"version": "7.4.5",
|
4
4
|
"description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes",
|
5
5
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
6
6
|
"homepage": "https://babeljs.io/",
|
@@ -15,7 +15,7 @@
|
|
15
15
|
"@babel/generator": "^7.4.4",
|
16
16
|
"@babel/helper-function-name": "^7.1.0",
|
17
17
|
"@babel/helper-split-export-declaration": "^7.4.4",
|
18
|
-
"@babel/parser": "^7.4.
|
18
|
+
"@babel/parser": "^7.4.5",
|
19
19
|
"@babel/types": "^7.4.4",
|
20
20
|
"debug": "^4.1.0",
|
21
21
|
"globals": "^11.1.0",
|
@@ -24,5 +24,5 @@
|
|
24
24
|
"devDependencies": {
|
25
25
|
"@babel/helper-plugin-test-runner": "^7.0.0"
|
26
26
|
},
|
27
|
-
"gitHead": "
|
27
|
+
"gitHead": "33ab4f166117e2380de3955a0842985f578b01b8"
|
28
28
|
}
|