Socket
Socket
Sign inDemoInstall

@babel/plugin-transform-react-pure-annotations

Package Overview
Dependencies
Maintainers
4
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@babel/plugin-transform-react-pure-annotations - npm Package Compare versions

Comparing version 7.18.6 to 7.21.4-esm

lib/index.js.map

18

lib/index.js

@@ -7,11 +7,6 @@ "use strict";

exports.default = void 0;
var _helperPluginUtils = require("@babel/helper-plugin-utils");
var _helperAnnotateAsPure = require("@babel/helper-annotate-as-pure");
var _core = require("@babel/core");
const PURE_CALLS = [["react", new Set(["cloneElement", "createContext", "createElement", "createFactory", "createRef", "forwardRef", "isValidElement", "memo", "lazy"])], ["react-dom", new Set(["createPortal"])]];
var _default = (0, _helperPluginUtils.declare)(api => {

@@ -27,12 +22,8 @@ api.assertVersion(7);

}
}
};
});
exports.default = _default;
function isReactCall(path) {
const calleePath = path.get("callee");
if (!calleePath.isMemberExpression()) {

@@ -46,12 +37,8 @@ for (const [module, methods] of PURE_CALLS) {

}
return false;
}
const object = calleePath.get("object");
const callee = calleePath.node;
if (!callee.computed && _core.types.isIdentifier(callee.property)) {
const propertyName = callee.property.name;
for (const [module, methods] of PURE_CALLS) {

@@ -63,4 +50,5 @@ if (object.referencesImport(module, "default") || object.referencesImport(module, "*")) {

}
return false;
}
return false;
}
//# sourceMappingURL=index.js.map
{
"name": "@babel/plugin-transform-react-pure-annotations",
"version": "7.18.6",
"version": "7.21.4-esm",
"description": "Mark top-level React method calls as pure for tree shaking",

@@ -19,11 +19,11 @@ "repository": {

"dependencies": {
"@babel/helper-annotate-as-pure": "^7.18.6",
"@babel/helper-plugin-utils": "^7.18.6"
"@babel/helper-annotate-as-pure": "^7.21.4-esm",
"@babel/helper-plugin-utils": "^7.21.4-esm"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || 7.21.4-esm"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/helper-plugin-test-runner": "^7.18.6"
"@babel/core": "^7.21.4-esm",
"@babel/helper-plugin-test-runner": "^7.21.4-esm"
},

@@ -30,0 +30,0 @@ "engines": {

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