Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@babel/plugin-transform-react-display-name

Package Overview
Dependencies
Maintainers
4
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@babel/plugin-transform-react-display-name - npm Package Compare versions

Comparing version 7.18.6 to 7.21.4-esm

lib/index.js.map

27

lib/index.js

@@ -7,25 +7,16 @@ "use strict";

exports.default = void 0;
var _helperPluginUtils = require("@babel/helper-plugin-utils");
var _path = require("path");
var _core = require("@babel/core");
var _default = (0, _helperPluginUtils.declare)(api => {
api.assertVersion(7);
function addDisplayName(id, call) {
const props = call.arguments[0].properties;
let safe = true;
for (let i = 0; i < props.length; i++) {
const prop = props[i];
if (_core.types.isSpreadElement(prop)) {
continue;
}
const key = _core.types.toComputedKey(prop);
if (_core.types.isStringLiteral(key, {

@@ -38,3 +29,2 @@ value: "displayName"

}
if (safe) {

@@ -44,16 +34,11 @@ props.unshift(_core.types.objectProperty(_core.types.identifier("displayName"), _core.types.stringLiteral(id)));

}
const isCreateClassCallExpression = _core.types.buildMatchMemberExpression("React.createClass");
const isCreateClassAddon = callee => _core.types.isIdentifier(callee, {
name: "createReactClass"
});
function isCreateClass(node) {
if (!node || !_core.types.isCallExpression(node)) return false;
if (!isCreateClassCallExpression(node.callee) && !isCreateClassAddon(node.callee)) {
return false;
}
const args = node.arguments;

@@ -65,3 +50,2 @@ if (args.length !== 1) return false;

}
return {

@@ -75,13 +59,9 @@ name: "transform-react-display-name",

const filename = state.filename || "unknown";
let displayName = _path.basename(filename, _path.extname(filename));
if (displayName === "index") {
displayName = _path.basename(_path.dirname(filename));
}
addDisplayName(displayName, node.declaration);
}
},
CallExpression(path) {

@@ -103,11 +83,8 @@ const {

}
if (id) return true;
});
if (!id) return;
if (_core.types.isMemberExpression(id)) {
id = id.property;
}
if (_core.types.isIdentifier(id)) {

@@ -117,7 +94,7 @@ addDisplayName(id.name, node);

}
}
};
});
exports.default = _default;
exports.default = _default;
//# sourceMappingURL=index.js.map
{
"name": "@babel/plugin-transform-react-display-name",
"version": "7.18.6",
"version": "7.21.4-esm",
"description": "Add displayName to React.createClass calls",

@@ -20,10 +20,10 @@ "repository": {

"dependencies": {
"@babel/helper-plugin-utils": "^7.18.6"
"@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