新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
/** @typedef {import("./Chunk")} Chunk */
|
|
/** @typedef {import("./ChunkGroup")} ChunkGroup */
|
|
/** @typedef {import(".").Entrypoint} Entrypoint */
|
|
|
|
/**
|
|
* @param {ChunkGroup} chunkGroup the ChunkGroup to connect
|
|
* @param {Chunk} chunk chunk to tie to ChunkGroup
|
|
* @returns {void}
|
|
*/
|
|
const connectChunkGroupAndChunk = (chunkGroup, chunk) => {
|
|
if (chunkGroup.pushChunk(chunk)) {
|
|
chunk.addGroup(chunkGroup);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* @param {ChunkGroup} parent parent ChunkGroup to connect
|
|
* @param {ChunkGroup} child child ChunkGroup to connect
|
|
* @returns {void}
|
|
*/
|
|
const connectChunkGroupParentAndChild = (parent, child) => {
|
|
if (parent.addChild(child)) {
|
|
child.addParent(parent);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* @param {Entrypoint} entrypoint the entrypoint
|
|
* @param {Entrypoint} dependOnEntrypoint the dependOnEntrypoint
|
|
* @returns {void}
|
|
*/
|
|
const connectEntrypointAndDependOn = (entrypoint, dependOnEntrypoint) => {
|
|
entrypoint.addDependOn(dependOnEntrypoint);
|
|
};
|
|
|
|
module.exports.connectChunkGroupAndChunk = connectChunkGroupAndChunk;
|
|
module.exports.connectChunkGroupParentAndChild =
|
|
connectChunkGroupParentAndChild;
|
|
module.exports.connectEntrypointAndDependOn = connectEntrypointAndDependOn;
|