Lines Matching refs:projectPath
315 export function genTemporaryPath(filePath: string, projectPath: string, buildPath: string,
318 projectPath = toUnixPath(projectPath);
321 …const projectRootPath: string = toUnixPath(buildInHar ? projectPath : projectConfig.projectRootPat…
343 if (filePath.indexOf(projectPath) !== -1) {
344 const relativeFilePath: string = filePath.replace(projectPath, '');
519 watchModifiedFiles[0] === projectConfig.projectPath && !watchRemovedFiles.length)) {
550 watchRemovedFiles = watchRemovedFiles.map(file => path.relative(projectConfig.projectPath, file));
554 .map(file => path.relative(projectConfig.projectPath, file))]
562 export function getResolveModules(projectPath: string, faMode: boolean): string[] {
565 path.resolve(projectPath, '../../../../../'),
566 path.resolve(projectPath, '../../../../' + projectConfig.packageDir),
567 path.resolve(projectPath, '../../../../../' + projectConfig.packageDir),
568 path.resolve(projectPath, '../../')
572 path.resolve(projectPath, '../../../../'),
573 path.resolve(projectPath, '../../../' + projectConfig.packageDir),
574 path.resolve(projectPath, '../../../../' + projectConfig.packageDir),
575 path.resolve(projectPath, '../')