Socket
Socket
Sign inDemoInstall

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

Package Overview
Dependencies
59
Maintainers
4
Versions
68
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 7.22.5 to 8.0.0-alpha.0

39

lib/index.js

@@ -1,11 +0,6 @@

"use strict";
import { declare } from '@babel/helper-plugin-utils';
import path from 'path';
import { types } from '@babel/core';
Object.defineProperty(exports, "__esModule", {
value: true
});
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 => {
var index = declare(api => {
api.assertVersion(7);

@@ -17,7 +12,7 @@ function addDisplayName(id, call) {

const prop = props[i];
if (_core.types.isSpreadElement(prop)) {
if (types.isSpreadElement(prop)) {
continue;
}
const key = _core.types.toComputedKey(prop);
if (_core.types.isStringLiteral(key, {
const key = types.toComputedKey(prop);
if (types.isStringLiteral(key, {
value: "displayName"

@@ -30,11 +25,11 @@ })) {

if (safe) {
props.unshift(_core.types.objectProperty(_core.types.identifier("displayName"), _core.types.stringLiteral(id)));
props.unshift(types.objectProperty(types.identifier("displayName"), types.stringLiteral(id)));
}
}
const isCreateClassCallExpression = _core.types.buildMatchMemberExpression("React.createClass");
const isCreateClassAddon = callee => _core.types.isIdentifier(callee, {
const isCreateClassCallExpression = types.buildMatchMemberExpression("React.createClass");
const isCreateClassAddon = callee => types.isIdentifier(callee, {
name: "createReactClass"
});
function isCreateClass(node) {
if (!node || !_core.types.isCallExpression(node)) return false;
if (!node || !types.isCallExpression(node)) return false;
if (!isCreateClassCallExpression(node.callee) && !isCreateClassAddon(node.callee)) {

@@ -46,3 +41,3 @@ return false;

const first = args[0];
if (!_core.types.isObjectExpression(first)) return false;
if (!types.isObjectExpression(first)) return false;
return true;

@@ -58,5 +53,5 @@ }

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

@@ -85,6 +80,6 @@ addDisplayName(displayName, node.declaration);

if (!id) return;
if (_core.types.isMemberExpression(id)) {
if (types.isMemberExpression(id)) {
id = id.property;
}
if (_core.types.isIdentifier(id)) {
if (types.isIdentifier(id)) {
addDisplayName(id.name, node);

@@ -96,4 +91,4 @@ }

});
exports.default = _default;
export { index as default };
//# sourceMappingURL=index.js.map
{
"name": "@babel/plugin-transform-react-display-name",
"version": "7.22.5",
"version": "8.0.0-alpha.0",
"description": "Add displayName to React.createClass calls",

@@ -20,16 +20,20 @@ "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/helper-plugin-test-runner": "^7.22.5"
"@babel/core": "^8.0.0-alpha.0",
"@babel/helper-plugin-test-runner": "^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-transform-react-display-name

See our website [@babel/plugin-transform-react-display-name](https://babeljs.io/docs/en/babel-plugin-transform-react-display-name) for more information.
See our website [@babel/plugin-transform-react-display-name](https://babeljs.io/docs/babel-plugin-transform-react-display-name) 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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc