@putout/babel 5.2.0 → 5.2.2
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.
- package/README.md +1 -9
- package/bundle/index.js +1 -1
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -6,15 +6,7 @@
|
|
|
6
6
|
Pre-builts of Babel 8.
|
|
7
7
|
|
|
8
8
|
Includes:
|
|
9
|
-
- [`
|
|
10
|
-
- [`Remove Babel 7 from the codebase`](https://github.com/babel/babel/pull/17618);
|
|
11
|
-
- [`Fix traverse NodePath caching`](https://github.com/babel/babel/pull/17568);
|
|
12
|
-
- [`Improve Unicode handling in code-frame tokenizer`](https://github.com/babel/babel/pull/17589);
|
|
13
|
-
- [`Improve traverse types`](https://github.com/babel/babel/pull/17574);
|
|
14
|
-
- [`Rename TSImportType.argument to .source`](https://github.com/babel/babel/pull/17610);
|
|
15
|
-
- [`Remove decorator parser plugin options`](https://github.com/babel/babel/pull/17643);
|
|
16
|
-
- [`Rename blacklist option`](https://github.com/babel/babel/pull/17671);
|
|
17
|
-
- [`Ensure `parseExpression` with `tokens: true` returns the exported tokens`](https://github.com/babel/babel/pull/17666);
|
|
9
|
+
- [`generator: cleanup Babel 8 comments`](https://github.com/babel/babel/pull/17659);
|
|
18
10
|
|
|
19
11
|
Usage
|
|
20
12
|
|
package/bundle/index.js
CHANGED
|
@@ -42676,7 +42676,7 @@ function verify$1(visitor) {
|
|
|
42676
42676
|
continue;
|
|
42677
42677
|
|
|
42678
42678
|
if (!TYPES2.includes(nodeType)) {
|
|
42679
|
-
throw new Error(`You gave us a visitor for the node type ${nodeType} but it's not a valid type in @babel/traverse ${'8.0.0-beta.
|
|
42679
|
+
throw new Error(`You gave us a visitor for the node type ${nodeType} but it's not a valid type in @babel/traverse ${'8.0.0-beta.4'}`);
|
|
42680
42680
|
}
|
|
42681
42681
|
|
|
42682
42682
|
const visitors2 = visitor[nodeType];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@putout/babel",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
|
|
6
6
|
"description": "Babel 8 in CommonJS",
|
|
@@ -48,25 +48,25 @@
|
|
|
48
48
|
"commonjs"
|
|
49
49
|
],
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@babel/code-frame": "
|
|
52
|
-
"@babel/generator": "
|
|
53
|
-
"@babel/parser": "
|
|
54
|
-
"@babel/template": "
|
|
55
|
-
"@babel/traverse": "
|
|
56
|
-
"@babel/types": "
|
|
51
|
+
"@babel/code-frame": "8.0.0-beta.4",
|
|
52
|
+
"@babel/generator": "8.0.0-beta.4",
|
|
53
|
+
"@babel/parser": "8.0.0-beta.4",
|
|
54
|
+
"@babel/template": "8.0.0-beta.4",
|
|
55
|
+
"@babel/traverse": "8.0.0-beta.4",
|
|
56
|
+
"@babel/types": "8.0.0-beta.4",
|
|
57
57
|
"@swc/core": "^1.3.101",
|
|
58
|
-
"@types/node": "^
|
|
58
|
+
"@types/node": "^25.0.6",
|
|
59
59
|
"acorn-stage3": "^4.0.0",
|
|
60
60
|
"c8": "^10.1.2",
|
|
61
61
|
"check-dts": "^0.9.0",
|
|
62
62
|
"eslint": "^9.4.0",
|
|
63
63
|
"eslint-plugin-n": "^17.9.0",
|
|
64
|
-
"eslint-plugin-putout": "^
|
|
65
|
-
"globals": "^
|
|
66
|
-
"madrun": "^
|
|
64
|
+
"eslint-plugin-putout": "^29.4.0",
|
|
65
|
+
"globals": "^17.0.0",
|
|
66
|
+
"madrun": "^12.1.0",
|
|
67
67
|
"nodemon": "^3.0.1",
|
|
68
|
-
"putout": "^
|
|
69
|
-
"supertape": "^
|
|
68
|
+
"putout": "^41.7.0",
|
|
69
|
+
"supertape": "^12.0.12",
|
|
70
70
|
"tsup": "^8.0.1",
|
|
71
71
|
"typescript": "^5.2.2"
|
|
72
72
|
},
|