mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-22 13:31:16 +00:00
16 lines
891 B
TypeScript
16 lines
891 B
TypeScript
/** Source roots whose changes require the root dev build pipeline. */
|
|
export const runNodeSourceRoots: string[];
|
|
/** Root config files whose changes invalidate the dev build. */
|
|
export const runNodeConfigFiles: string[];
|
|
/** Combined watch list used by the run-node wrapper. */
|
|
export const runNodeWatchedPaths: string[];
|
|
/** Plugin metadata files that require a runtime restart even without source edits. */
|
|
export const extensionRestartMetadataFiles: Set<string>;
|
|
|
|
/** Normalizes watch paths to repository-style POSIX separators. */
|
|
export function normalizeRunNodePath(filePath: unknown): string;
|
|
/** Returns true when a repo path should trigger a dev rebuild. */
|
|
export function isBuildRelevantRunNodePath(repoPath: unknown): boolean;
|
|
/** Returns true when a repo path should restart the running dev process. */
|
|
export function isRestartRelevantRunNodePath(repoPath: unknown): boolean;
|