chore(integration): snapshot local main worktree

This commit is contained in:
inman
2026-08-31 10:23:21 +08:00
parent 48a9189939
commit 33fb31fb28
116 changed files with 8108 additions and 3026 deletions

View File

@@ -56,7 +56,7 @@ export class GameAssetReviewConflictError extends Error {
const stateWriteQueues = new Map<string, Promise<void>>();
function assetReviewStatePath(projectPath: string): string {
return join(projectPath, '.niancode', STATE_FILE_NAME);
return join(projectPath, '.makelore', STATE_FILE_NAME);
}
function now(): string {
@@ -136,7 +136,7 @@ async function readState(projectPath: string): Promise<GameAssetReviewState> {
}
async function writeState(projectPath: string, state: GameAssetReviewState): Promise<void> {
const directory = join(projectPath, '.niancode');
const directory = join(projectPath, '.makelore');
await mkdir(directory, { recursive: true });
const target = assetReviewStatePath(projectPath);
const temporary = `${target}.${randomUUID()}.tmp`;