新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
22 lines
670 B
JavaScript
22 lines
670 B
JavaScript
exports.getImportSource = function ({
|
|
node
|
|
}) {
|
|
if (node.specifiers.length === 0) return node.source.value;
|
|
};
|
|
exports.getRequireSource = function ({
|
|
node
|
|
}) {
|
|
if (node.type !== "ExpressionStatement") return;
|
|
const {
|
|
expression
|
|
} = node;
|
|
if (expression.type === "CallExpression" && expression.callee.type === "Identifier" && expression.callee.name === "require" && expression.arguments.length === 1 && expression.arguments[0].type === "StringLiteral") {
|
|
return expression.arguments[0].value;
|
|
}
|
|
};
|
|
exports.isPolyfillSource = function (source) {
|
|
return source === "@babel/polyfill" || source === "core-js";
|
|
};
|
|
|
|
//# sourceMappingURL=utils.cjs.map
|