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

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

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-transform-react-jsx-source - npm Package Compare versions

Comparing version 7.21.4-esm.4 to 7.22.5

27

lib/index.js

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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