Merge remote-tracking branch 'web/master' into feat/five_min_design
Project CI / Repository checks (pull_request) Failing after 4m0s
Project CI / Frontend tests (pull_request) Successful in 5m18s
Project CI / Backend tests (pull_request) Successful in 5m51s
Project CI / Native shell tests (pull_request) Successful in 16m14s

This commit is contained in:
2026-08-24 05:04:00 +00:00
18 changed files with 1121 additions and 55 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);