提升AGC标准安装包patch版本
Project CI / Repository checks (push) Successful in 3m24s
Project CI / Frontend tests (push) Successful in 4m5s
Project CI / Backend tests (push) Successful in 5m4s
Project CI / Native shell tests (push) Successful in 13m0s

同步Tauri、Cargo与Node版本到0.1.1

更新AGC配置检查门禁
This commit is contained in:
2026-08-24 12:41:25 +08:00
parent 299b52d71b
commit 042eb05b0e
8 changed files with 24 additions and 17 deletions
+6 -2
View File
@@ -173,8 +173,12 @@ export function collectNpmWorkspaceErrors(rootDir) {
`${manifestPath}: name must be ${WORKSPACE_NAMES[workspacePath]}, received ${String(manifest.name)}`,
);
}
if (manifest.version !== '0.1.0') {
errors.push(`${manifestPath}: workspace version must be 0.1.0`);
const expectedWorkspaceVersion =
workspacePath === 'apps/ai-game-creator-shell' ? '0.1.1' : '0.1.0';
if (manifest.version !== expectedWorkspaceVersion) {
errors.push(
`${manifestPath}: workspace version must be ${expectedWorkspaceVersion}`,
);
}
for (const nestedLockfile of findNestedLockfiles(rootDir, workspacePath)) {
+2 -1
View File
@@ -78,7 +78,8 @@ function createValidFixture() {
const manifest = {
name: workspaceNames[workspacePath],
private: true,
version: '0.1.0',
version:
workspacePath === 'apps/ai-game-creator-shell' ? '0.1.1' : '0.1.0',
dependencies: localDependencies[workspacePath],
};
writeJson(rootDir, `${workspacePath}/package.json`, manifest);