@babel/traverse 7.0.0-beta.51 → 7.0.0-beta.52
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/README.md +3 -3
- package/package.json +8 -8
package/README.md
CHANGED
@@ -2,18 +2,18 @@
|
|
2
2
|
|
3
3
|
> The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes
|
4
4
|
|
5
|
-
See our website [@babel/traverse](https://
|
5
|
+
See our website [@babel/traverse](https://babeljs.io/docs/en/next/babel-traverse.html) for more information or the [issues](https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20traverse%22+is%3Aopen) associated with this package.
|
6
6
|
|
7
7
|
## Install
|
8
8
|
|
9
9
|
Using npm:
|
10
10
|
|
11
11
|
```sh
|
12
|
-
npm install --save @babel/traverse
|
12
|
+
npm install --save-dev @babel/traverse
|
13
13
|
```
|
14
14
|
|
15
15
|
or using yarn:
|
16
16
|
|
17
17
|
```sh
|
18
|
-
yarn add
|
18
|
+
yarn add @babel/traverse --dev
|
19
19
|
```
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babel/traverse",
|
3
|
-
"version": "7.0.0-beta.
|
3
|
+
"version": "7.0.0-beta.52",
|
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/",
|
@@ -8,18 +8,18 @@
|
|
8
8
|
"repository": "https://github.com/babel/babel/tree/master/packages/babel-traverse",
|
9
9
|
"main": "lib/index.js",
|
10
10
|
"dependencies": {
|
11
|
-
"@babel/code-frame": "7.0.0-beta.
|
12
|
-
"@babel/generator": "7.0.0-beta.
|
13
|
-
"@babel/helper-function-name": "7.0.0-beta.
|
14
|
-
"@babel/helper-split-export-declaration": "7.0.0-beta.
|
15
|
-
"@babel/parser": "7.0.0-beta.
|
16
|
-
"@babel/types": "7.0.0-beta.
|
11
|
+
"@babel/code-frame": "7.0.0-beta.52",
|
12
|
+
"@babel/generator": "7.0.0-beta.52",
|
13
|
+
"@babel/helper-function-name": "7.0.0-beta.52",
|
14
|
+
"@babel/helper-split-export-declaration": "7.0.0-beta.52",
|
15
|
+
"@babel/parser": "7.0.0-beta.52",
|
16
|
+
"@babel/types": "7.0.0-beta.52",
|
17
17
|
"debug": "^3.1.0",
|
18
18
|
"globals": "^11.1.0",
|
19
19
|
"invariant": "^2.2.0",
|
20
20
|
"lodash": "^4.17.5"
|
21
21
|
},
|
22
22
|
"devDependencies": {
|
23
|
-
"@babel/helper-plugin-test-runner": "7.0.0-beta.
|
23
|
+
"@babel/helper-plugin-test-runner": "7.0.0-beta.52"
|
24
24
|
}
|
25
25
|
}
|