Lines Matching refs:projectPath
333 export function genTemporaryPath(filePath: string, projectPath: string, buildPath: string,
336 projectPath = toUnixPath(projectPath);
339 …const projectRootPath: string = toUnixPath(buildInHar ? projectPath : projectConfig.projectRootPat…
361 if (filePath.indexOf(projectPath) !== -1) {
362 const relativeFilePath: string = filePath.replace(projectPath, '');
556 watchModifiedFiles[0] === projectConfig.projectPath && !watchRemovedFiles.length)) {
587 watchRemovedFiles = watchRemovedFiles.map(file => path.relative(projectConfig.projectPath, file));
591 .map(file => path.relative(projectConfig.projectPath, file))]
599 export function getResolveModules(projectPath: string, faMode: boolean): string[] {
602 path.resolve(projectPath, '../../../../../'),
603 path.resolve(projectPath, '../../../../' + projectConfig.packageDir),
604 path.resolve(projectPath, '../../../../../' + projectConfig.packageDir),
605 path.resolve(projectPath, '../../')
609 path.resolve(projectPath, '../../../../'),
610 path.resolve(projectPath, '../../../' + projectConfig.packageDir),
611 path.resolve(projectPath, '../../../../' + projectConfig.packageDir),
612 path.resolve(projectPath, '../')