Files
meeting-room/frontend/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value/lib/index.js
flying-hero 96f6318101 📦 添加虚拟环境和启动脚本
新增:
- backend/venv/ - Python 虚拟环境
- backend/start.sh - 启动脚本(使用虚拟环境)
- backend/requirements.txt - 依赖列表
- .gitignore - 忽略虚拟环境和缓存文件

说明:
- 每个项目使用独立虚拟环境
- 避免依赖冲突
- 启动脚本自动创建和激活虚拟环境
2026-04-04 18:29:02 +08:00

52 lines
1.1 KiB
JavaScript

"use strict";
exports.__esModule = true;
exports.default = void 0;
const addJSXAttribute = ({
types: t,
template
}, opts) => {
function getAttributeValue(value, literal) {
if (typeof value === 'string' && literal) {
return t.jsxExpressionContainer(template.ast(value).expression);
}
if (typeof value === 'string') {
return t.stringLiteral(value);
}
if (typeof value === 'boolean') {
return t.jsxExpressionContainer(t.booleanLiteral(value));
}
if (typeof value === 'number') {
return t.jsxExpressionContainer(t.numericLiteral(value));
}
return null;
}
return {
visitor: {
JSXAttribute(path) {
const valuePath = path.get('value');
if (!valuePath.isStringLiteral()) return;
opts.values.forEach(({
value,
newValue,
literal
}) => {
if (!valuePath.isStringLiteral({
value
})) return;
valuePath.replaceWith(getAttributeValue(newValue, literal));
});
}
}
};
};
var _default = addJSXAttribute;
exports.default = _default;