@babel/plugin-transform-react-jsx-source
Advanced tools
Comparing version 7.21.4-esm.4 to 7.22.5
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
9176
50
0
5
No
+ Added@babel/helper-plugin-utils@7.25.9(transitive)
- Removed@babel/helper-plugin-utils@7.21.4-esm.4(transitive)