• Home
  • Raw
  • Download

Lines Matching refs:tempFilePath

130   tempFilePath: string;  property in ModuleInfo
138 constructor(filePath: string, tempFilePath: string, buildFilePath: string,
141 this.tempFilePath = tempFilePath;
367 function processNodeModulesFile(filePath: string, tempFilePath: string, buildFilePath: string, abcF…
374 …const tempModuleInfo: ModuleInfo = new ModuleInfo(filePath, tempFilePath, buildFilePath, abcFilePa…
376 nodeModulesFile.push(tempFilePath);
378 …const tempModuleInfo: ModuleInfo = new ModuleInfo(filePath, tempFilePath, buildFilePath, abcFilePa…
380 nodeModulesFile.push(tempFilePath);
382 …const tempModuleInfo: ModuleInfo = new ModuleInfo(filePath, tempFilePath, buildFilePath, abcFilePa…
384 nodeModulesFile.push(tempFilePath);
391 function processEtsModule(filePath: string, tempFilePath: string, buildFilePath: string, nodeModule…
397 tempFilePath = tempFilePath.replace(/\.ets$/, EXTNAME_TS);
400 tempFilePath = tempFilePath.replace(/\.ets$/, EXTNAME_JS);
403 const abcFilePath: string = genAbcFileName(tempFilePath);
405 …processNodeModulesFile(filePath, tempFilePath, buildFilePath, abcFilePath, nodeModulesFile, module…
408 …const tempModuleInfo: ModuleInfo = new ModuleInfo(filePath, tempFilePath, buildFilePath, abcFilePa…
414 function processTsModule(filePath: string, tempFilePath: string, buildFilePath: string, nodeModules…
420 tempFilePath = tempFilePath.replace(/\.ts$/, EXTNAME_JS);
423 const abcFilePath: string = genAbcFileName(tempFilePath);
425 …processNodeModulesFile(filePath, tempFilePath, buildFilePath, abcFilePath, nodeModulesFile, module…
428 …const tempModuleInfo: ModuleInfo = new ModuleInfo(filePath, tempFilePath, buildFilePath, abcFilePa…
434 function processJsModule(filePath: string, tempFilePath: string, buildFilePath: string, nodeModules…
435 const parent: string = path.join(tempFilePath, '..');
440 fs.copyFileSync(filePath, tempFilePath);
442 const abcFilePath: string = genAbcFileName(tempFilePath);
444 …processNodeModulesFile(filePath, tempFilePath, buildFilePath, abcFilePath, nodeModulesFile, module…
447 …const tempModuleInfo: ModuleInfo = new ModuleInfo(filePath, tempFilePath, buildFilePath, abcFilePa…
453 function processJsonModule(filePath: string, tempFilePath: string, buildFilePath: string, nodeModul…
456 …processNodeModulesFile(filePath, tempFilePath, buildFilePath, abcFilePath, nodeModulesFile, module…
459 …const tempModuleInfo: ModuleInfo = new ModuleInfo(filePath, tempFilePath, buildFilePath, abcFilePa…
541 …let tempFilePath = genTemporaryPath(filePath, projectConfig.projectPath, process.env.cachePath, pr…
542 if (tempFilePath.length === 0) {
545 validateFilePathLength(tempFilePath, logger);
549 tempFilePath = toUnixPath(tempFilePath);
554 processEtsModule(filePath, tempFilePath, buildFilePath, nodeModulesFile, module);
558 processTsModule(filePath, tempFilePath, buildFilePath, nodeModulesFile, module);
564 processJsModule(filePath, tempFilePath, buildFilePath, nodeModulesFile, module);
568 processJsonModule(filePath, tempFilePath, buildFilePath, nodeModulesFile, module);
857 return item.tempFilePath !== newItem.tempFilePath;
880 const input: string = moduleInfos[i].tempFilePath;
881 let outputPath: string = genProtoFileName(moduleInfos[i].tempFilePath);
907 const input: string = filterModuleInfos[i].tempFilePath;
908 let outputPath: string = genProtoFileName(filterModuleInfos[i].tempFilePath);;
1097 …let tempFilePath: string = genTemporaryPath(filePath, projectConfig.projectPath, process.env.cache…
1098 if (tempFilePath.length === 0) {
1101 validateFilePathLength(tempFilePath, logger);
1103 tempFilePath = toUnixPath(tempFilePath);
1107 processEtsModule(filePath, tempFilePath, buildFilePath, nodeModulesFile, undefined);
1111 processTsModule(filePath, tempFilePath, buildFilePath, nodeModulesFile, undefined);
1117 processJsModule(filePath, tempFilePath, buildFilePath, nodeModulesFile, undefined);
1170 return m1.tempFilePath < m2.tempFilePath ? 1 : -1;
1173 let protoTempPath: string = genProtoFileName(moduleInfos[i].tempFilePath);