@babel/traverse 7.29.0 → 7.29.7

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.
Files changed (2) hide show
  1. package/lib/visitors.js +1 -1
  2. package/package.json +9 -9
package/lib/visitors.js CHANGED
@@ -102,7 +102,7 @@ function verify$1(visitor) {
102
102
  }
103
103
  if (shouldIgnoreKey(nodeType)) continue;
104
104
  if (!TYPES.includes(nodeType)) {
105
- throw new Error(`You gave us a visitor for the node type ${nodeType} but it's not a valid type in @babel/traverse ${"7.29.0"}`);
105
+ throw new Error(`You gave us a visitor for the node type ${nodeType} but it's not a valid type in @babel/traverse ${"7.29.7"}`);
106
106
  }
107
107
  const visitors = visitor[nodeType];
108
108
  if (typeof visitors === "object") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@babel/traverse",
3
- "version": "7.29.0",
3
+ "version": "7.29.7",
4
4
  "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes",
5
5
  "author": "The Babel Team (https://babel.dev/team)",
6
6
  "homepage": "https://babel.dev/docs/en/next/babel-traverse",
@@ -16,17 +16,17 @@
16
16
  },
17
17
  "main": "./lib/index.js",
18
18
  "dependencies": {
19
- "@babel/code-frame": "^7.29.0",
20
- "@babel/generator": "^7.29.0",
21
- "@babel/helper-globals": "^7.28.0",
22
- "@babel/parser": "^7.29.0",
23
- "@babel/template": "^7.28.6",
24
- "@babel/types": "^7.29.0",
19
+ "@babel/code-frame": "^7.29.7",
20
+ "@babel/generator": "^7.29.7",
21
+ "@babel/helper-globals": "^7.29.7",
22
+ "@babel/parser": "^7.29.7",
23
+ "@babel/template": "^7.29.7",
24
+ "@babel/types": "^7.29.7",
25
25
  "debug": "^4.3.1"
26
26
  },
27
27
  "devDependencies": {
28
- "@babel/core": "^7.29.0",
29
- "@babel/helper-plugin-test-runner": "^7.27.1"
28
+ "@babel/core": "^7.29.7",
29
+ "@babel/helper-plugin-test-runner": "^7.29.7"
30
30
  },
31
31
  "engines": {
32
32
  "node": ">=6.9.0"