@babel/plugin-proposal-decorators 7.16.4 → 7.16.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.
@@ -153,7 +153,7 @@ var _default = {
153
153
  },
154
154
 
155
155
  ClassExpression(path, state) {
156
- const decoratedClass = applyEnsureOrdering(path) || applyClassDecorators(path, state) || applyMethodDecorators(path, state);
156
+ const decoratedClass = applyEnsureOrdering(path) || applyClassDecorators(path) || applyMethodDecorators(path, state);
157
157
  if (decoratedClass) path.replaceWith(decoratedClass);
158
158
  },
159
159
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@babel/plugin-proposal-decorators",
3
- "version": "7.16.4",
3
+ "version": "7.16.5",
4
4
  "author": "The Babel Team (https://babel.dev/team)",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -20,16 +20,17 @@
20
20
  "decorators"
21
21
  ],
22
22
  "dependencies": {
23
- "@babel/helper-create-class-features-plugin": "^7.16.0",
24
- "@babel/helper-plugin-utils": "^7.14.5",
25
- "@babel/plugin-syntax-decorators": "^7.16.0"
23
+ "@babel/helper-create-class-features-plugin": "^7.16.5",
24
+ "@babel/helper-plugin-utils": "^7.16.5",
25
+ "@babel/plugin-syntax-decorators": "^7.16.5"
26
26
  },
27
27
  "peerDependencies": {
28
28
  "@babel/core": "^7.0.0-0"
29
29
  },
30
30
  "devDependencies": {
31
- "@babel/core": "^7.16.0",
32
- "@babel/helper-plugin-test-runner": "^7.16.0",
31
+ "@babel/core": "^7.16.5",
32
+ "@babel/helper-plugin-test-runner": "^7.16.5",
33
+ "@babel/traverse": "^7.16.5",
33
34
  "babel-plugin-polyfill-es-shims": "^0.6.0",
34
35
  "object.getownpropertydescriptors": "^2.1.1"
35
36
  },