Socket
Socket
Sign inDemoInstall

@babel/plugin-transform-react-jsx-source

Package Overview
Dependencies
Maintainers
4
Versions
76
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@babel/plugin-transform-react-jsx-source - npm Package Compare versions

Comparing version 7.21.4-esm to 7.21.4-esm.1

27

lib/index.js

@@ -1,13 +0,7 @@

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _helperPluginUtils = require("@babel/helper-plugin-utils");
var _core = require("@babel/core");
import { declare } from "@babel/helper-plugin-utils";
import { types as t, template } from "@babel/core";
const TRACE_ID = "__source";
const FILE_NAME_VAR = "_jsxFileName";
const createNodeFromNullish = (val, fn) => val == null ? _core.types.nullLiteral() : fn(val);
var _default = (0, _helperPluginUtils.declare)(api => {
const createNodeFromNullish = (val, fn) => val == null ? t.nullLiteral() : fn(val);
export default declare(api => {
api.assertVersion(7);

@@ -18,5 +12,5 @@ function makeTrace(fileNameIdentifier, {

}) {
const fileLineLiteral = createNodeFromNullish(line, _core.types.numericLiteral);
const fileColumnLiteral = createNodeFromNullish(column, c => _core.types.numericLiteral(c + 1));
return _core.template.expression.ast`{
const fileLineLiteral = createNodeFromNullish(line, t.numericLiteral);
const fileColumnLiteral = createNodeFromNullish(column, c => t.numericLiteral(c + 1));
return template.expression.ast`{
fileName: ${fileNameIdentifier},

@@ -27,3 +21,3 @@ lineNumber: ${fileLineLiteral},

}
const isSourceAttr = attr => _core.types.isJSXAttribute(attr) && attr.name.name === TRACE_ID;
const isSourceAttr = attr => t.isJSXAttribute(attr) && attr.name.name === TRACE_ID;
return {

@@ -44,6 +38,6 @@ name: "transform-react-jsx-source",

id: fileNameId,
init: _core.types.stringLiteral(state.filename || "")
init: t.stringLiteral(state.filename || "")
});
}
node.attributes.push(_core.types.jsxAttribute(_core.types.jsxIdentifier(TRACE_ID), _core.types.jsxExpressionContainer(makeTrace(_core.types.cloneNode(state.fileNameIdentifier), node.loc.start))));
node.attributes.push(t.jsxAttribute(t.jsxIdentifier(TRACE_ID), t.jsxExpressionContainer(makeTrace(t.cloneNode(state.fileNameIdentifier), node.loc.start))));
}

@@ -53,4 +47,3 @@ }

});
exports.default = _default;
//# sourceMappingURL=index.js.map
{
"name": "@babel/plugin-transform-react-jsx-source",
"version": "7.21.4-esm",
"version": "7.21.4-esm.1",
"description": "Add a __source prop to all JSX Elements",

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

"dependencies": {
"@babel/helper-plugin-utils": "^7.21.4-esm"
"@babel/helper-plugin-utils": "^7.21.4-esm.1"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0 || 7.21.4-esm"
"@babel/core": "^7.0.0-0 || 7.21.4-esm.1"
},
"devDependencies": {
"@babel/core": "^7.21.4-esm",
"@babel/helper-plugin-test-runner": "^7.21.4-esm",
"@babel/plugin-syntax-jsx": "^7.21.4-esm"
"@babel/core": "^7.21.4-esm.1",
"@babel/helper-plugin-test-runner": "^7.21.4-esm.1",
"@babel/plugin-syntax-jsx": "^7.21.4-esm.1"
},

@@ -35,3 +35,3 @@ "engines": {

"author": "The Babel Team (https://babel.dev/team)",
"type": "commonjs"
"type": "module"
}

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