chore(integration): snapshot local main worktree
This commit is contained in:
@@ -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`;
|
||||
|
||||
Reference in New Issue
Block a user