UNPKG

a2r

Version:
10 lines (9 loc) 458 B
/** * Watch project folder for changes * @param projectPath Project path (as in project info) * @param dockerName Docker name (as in project info) * @param dockerRootPath Docker working dir * @param pathsToIgnore Paths to ignore (node_modules is always ignored) */ declare const watchNextProject: (projectPath: string, dockerName: string, dockerRootPath: string, pathsToIgnore?: string[] | undefined) => Promise<void>; export default watchNextProject;