@babel/plugin-transform-class-properties 8.0.0-rc.5 → 8.0.0-rc.6
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/lib/index.js +1 -1
- package/package.json +6 -6
package/lib/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import { declare } from '@babel/helper-plugin-utils';
|
|
|
2
2
|
import { createClassFeaturePlugin, FEATURES } from '@babel/helper-create-class-features-plugin';
|
|
3
3
|
|
|
4
4
|
const index = declare((api, options) => {
|
|
5
|
-
api.assertVersion("^7.0.0-0 || ^8.0.0 || 8.0.0-rc.
|
|
5
|
+
api.assertVersion("^7.0.0-0 || ^8.0.0 || 8.0.0-rc.6");
|
|
6
6
|
return createClassFeaturePlugin({
|
|
7
7
|
name: "transform-class-properties",
|
|
8
8
|
api,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babel/plugin-transform-class-properties",
|
|
3
|
-
"version": "8.0.0-rc.
|
|
3
|
+
"version": "8.0.0-rc.6",
|
|
4
4
|
"description": "This plugin transforms static class properties as well as properties declared with the property initializer syntax",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
"babel-plugin"
|
|
18
18
|
],
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@babel/helper-create-class-features-plugin": "^8.0.0-rc.
|
|
21
|
-
"@babel/helper-plugin-utils": "^8.0.0-rc.
|
|
20
|
+
"@babel/helper-create-class-features-plugin": "^8.0.0-rc.6",
|
|
21
|
+
"@babel/helper-plugin-utils": "^8.0.0-rc.6"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@babel/core": "^8.0.0-rc.
|
|
24
|
+
"@babel/core": "^8.0.0-rc.6"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@babel/core": "^8.0.0-rc.
|
|
28
|
-
"@babel/helper-plugin-test-runner": "^8.0.0-rc.
|
|
27
|
+
"@babel/core": "^8.0.0-rc.6",
|
|
28
|
+
"@babel/helper-plugin-test-runner": "^8.0.0-rc.6"
|
|
29
29
|
},
|
|
30
30
|
"engines": {
|
|
31
31
|
"node": "^22.18.0 || >=24.11.0"
|