@babel/plugin-proposal-decorators 7.12.1 → 7.13.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.
- package/README.md +1 -1
- package/lib/index.js +1 -0
- package/package.json +9 -6
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> Compile class and object decorators to ES5
|
|
4
4
|
|
|
5
|
-
See our website [@babel/plugin-proposal-decorators](https://babeljs.io/docs/en/
|
|
5
|
+
See our website [@babel/plugin-proposal-decorators](https://babeljs.io/docs/en/babel-plugin-proposal-decorators) for more information.
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
package/lib/index.js
CHANGED
|
@@ -60,6 +60,7 @@ var _default = (0, _helperPluginUtils.declare)((api, options) => {
|
|
|
60
60
|
|
|
61
61
|
return (0, _helperCreateClassFeaturesPlugin.createClassFeaturePlugin)({
|
|
62
62
|
name: "proposal-decorators",
|
|
63
|
+
api,
|
|
63
64
|
feature: _helperCreateClassFeaturesPlugin.FEATURES.decorators,
|
|
64
65
|
|
|
65
66
|
manipulateOptions({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babel/plugin-proposal-decorators",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.13.5",
|
|
4
4
|
"author": "Logan Smyth <loganfsmyth@gmail.com>",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"url": "https://github.com/babel/babel.git",
|
|
13
13
|
"directory": "packages/babel-plugin-proposal-decorators"
|
|
14
14
|
},
|
|
15
|
+
"homepage": "https://babel.dev/docs/en/next/babel-plugin-proposal-decorators",
|
|
15
16
|
"main": "lib/index.js",
|
|
16
17
|
"keywords": [
|
|
17
18
|
"babel",
|
|
@@ -19,15 +20,17 @@
|
|
|
19
20
|
"decorators"
|
|
20
21
|
],
|
|
21
22
|
"dependencies": {
|
|
22
|
-
"@babel/helper-create-class-features-plugin": "^7.
|
|
23
|
-
"@babel/helper-plugin-utils": "^7.
|
|
24
|
-
"@babel/plugin-syntax-decorators": "^7.12.
|
|
23
|
+
"@babel/helper-create-class-features-plugin": "^7.13.0",
|
|
24
|
+
"@babel/helper-plugin-utils": "^7.13.0",
|
|
25
|
+
"@babel/plugin-syntax-decorators": "^7.12.13"
|
|
25
26
|
},
|
|
26
27
|
"peerDependencies": {
|
|
27
28
|
"@babel/core": "^7.0.0-0"
|
|
28
29
|
},
|
|
29
30
|
"devDependencies": {
|
|
30
|
-
"@babel/core": "
|
|
31
|
-
"@babel/helper-plugin-test-runner": "7.
|
|
31
|
+
"@babel/core": "7.13.1",
|
|
32
|
+
"@babel/helper-plugin-test-runner": "7.12.13",
|
|
33
|
+
"babel-plugin-polyfill-es-shims": "^0.1.2",
|
|
34
|
+
"object.getownpropertydescriptors": "^2.1.1"
|
|
32
35
|
}
|
|
33
36
|
}
|