Socket
Socket
Sign inDemoInstall

@babel/plugin-syntax-decorators

Package Overview
Dependencies
Maintainers
4
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@babel/plugin-syntax-decorators - npm Package Compare versions

Comparing version 7.22.5 to 8.0.0-alpha.0

71

lib/index.js

@@ -1,9 +0,4 @@

"use strict";
import { declare } from '@babel/helper-plugin-utils';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _helperPluginUtils = require("@babel/helper-plugin-utils");
var _default = (0, _helperPluginUtils.declare)((api, options) => {
var index = declare((api, options) => {
api.assertVersion(7);

@@ -14,35 +9,14 @@ let {

{
const {
legacy
} = options;
if (legacy !== undefined) {
if (typeof legacy !== "boolean") {
throw new Error(".legacy must be a boolean.");
}
if (version !== undefined) {
throw new Error("You can either use the .legacy or the .version option, not both.");
}
if (version === undefined) {
throw new Error("The decorators plugin requires a 'version' option, whose value must be one of: " + "'2023-05', '2023-01', '2022-03', '2021-12', '2018-09', or 'legacy'.");
}
if (version === undefined) {
version = legacy ? "legacy" : "2018-09";
} else if (version !== "2023-05" && version !== "2023-01" && version !== "2022-03" && version !== "2021-12" && version !== "2018-09" && version !== "legacy") {
if (version !== "2023-05" && version !== "2023-01" && version !== "2022-03" && version !== "2021-12" && version !== "legacy") {
throw new Error("Unsupported decorators version: " + version);
}
var {
decoratorsBeforeExport
} = options;
if (decoratorsBeforeExport === undefined) {
if (version === "2021-12" || version === "2022-03") {
decoratorsBeforeExport = false;
} else if (version === "2018-09") {
throw new Error("The decorators plugin, when .version is '2018-09' or not specified," + " requires a 'decoratorsBeforeExport' option, whose value must be a boolean.");
}
} else {
if (version === "legacy" || version === "2022-03" || version === "2023-01") {
throw new Error(`'decoratorsBeforeExport' can't be used with ${version} decorators.`);
}
if (typeof decoratorsBeforeExport !== "boolean") {
throw new Error("'decoratorsBeforeExport' must be a boolean.");
}
if (options.legacy !== undefined) {
throw new Error(`The .legacy option has been removed in Babel 8. Use .version: "legacy" instead.`);
}
if (options.decoratorsBeforeExport !== undefined) {
throw new Error(`The .decoratorsBeforeExport option has been removed in Babel 8.`);
}
}

@@ -57,22 +31,5 @@ return {

} else {
if (version === "2023-01" || version === "2023-05") {
parserOpts.plugins.push(["decorators", {
allowCallParenthesized: false
}], "decoratorAutoAccessors");
} else if (version === "2022-03") {
parserOpts.plugins.push(["decorators", {
decoratorsBeforeExport: false,
allowCallParenthesized: false
}], "decoratorAutoAccessors");
} else if (version === "2021-12") {
parserOpts.plugins.push(["decorators", {
decoratorsBeforeExport
}], "decoratorAutoAccessors");
generatorOpts.decoratorsBeforeExport = decoratorsBeforeExport;
} else if (version === "2018-09") {
parserOpts.plugins.push(["decorators", {
decoratorsBeforeExport
}]);
generatorOpts.decoratorsBeforeExport = decoratorsBeforeExport;
}
parserOpts.plugins.push(["decorators", {
allowCallParenthesized: false
}], "decoratorAutoAccessors");
}

@@ -82,4 +39,4 @@ }

});
exports.default = _default;
export { index as default };
//# sourceMappingURL=index.js.map

16

package.json
{
"name": "@babel/plugin-syntax-decorators",
"version": "7.22.5",
"version": "8.0.0-alpha.0",
"description": "Allow parsing of decorators",

@@ -20,15 +20,19 @@ "repository": {

"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5"
"@babel/helper-plugin-utils": "^8.0.0-alpha.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^8.0.0-alpha.0"
},
"devDependencies": {
"@babel/core": "^7.22.5"
"@babel/core": "^8.0.0-alpha.0"
},
"engines": {
"node": ">=6.9.0"
"node": "^16.20.0 || ^18.16.0 || >=20.0.0"
},
"author": "The Babel Team (https://babel.dev/team)",
"type": "commonjs"
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"type": "module"
}

@@ -5,3 +5,3 @@ # @babel/plugin-syntax-decorators

See our website [@babel/plugin-syntax-decorators](https://babeljs.io/docs/en/babel-plugin-syntax-decorators) for more information.
See our website [@babel/plugin-syntax-decorators](https://babeljs.io/docs/babel-plugin-syntax-decorators) for more information.

@@ -8,0 +8,0 @@ ## Install

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc