• Home
  • Raw
  • Download

Lines Matching refs:cacheOutputPath

181     let cacheOutputPath = "";
185 cacheOutputPath = path.join(process.env.cachePath, TEMPORARY, abilityDir, keyPath);
187 cacheOutputPath = output;
189 validateFilePathLength(cacheOutputPath);
190 parent = path.join(cacheOutputPath, '..');
194 fs.writeFileSync(cacheOutputPath, inputString);
195 if (fs.existsSync(cacheOutputPath)) {
196 let fileSize = fs.statSync(cacheOutputPath).size;
205 cacheOutputPath = toUnixPath(cacheOutputPath);
207 path: output, size: fileSize, cacheOutputPath: cacheOutputPath, sourceFile: sourceFile property
313 const cacheOutputPath = inputPaths[i].cacheOutputPath;
314 const cacheAbcFilePath = cacheOutputPath.replace(/\.temp\.js$/, '.abc');
315 if (!fs.existsSync(cacheOutputPath)) {
316 console.debug(red, `ERROR ${cacheOutputPath} is lost`, reset);
322 const hashInputContentData = toHashData(cacheOutputPath);
324 …if (jsonObject[cacheOutputPath] === hashInputContentData && jsonObject[cacheAbcFilePath] === hashA…
325 updateJsonObject[cacheOutputPath] = hashInputContentData;
341 const cacheOutputPath = fileterIntermediateJsBundle[i].cacheOutputPath;
342 const cacheAbcFilePath = cacheOutputPath.replace(/\.temp\.js$/, '.abc');
343 if (!fs.existsSync(cacheOutputPath) || !fs.existsSync(cacheAbcFilePath)) {
344 console.debug(red, `ERROR ${cacheOutputPath} is lost`, reset);
348 const hashInputContentData = toHashData(cacheOutputPath);
350 hashJsonObject[cacheOutputPath] = hashInputContentData;
413 const cacheOutputPath = intermediateJsBundle[i].cacheOutputPath;
414 const cacheAbcFilePath = intermediateJsBundle[i].cacheOutputPath.replace(/\.temp\.js$/, ".abc");
428 if (process.env.cachePath === undefined && fs.existsSync(cacheOutputPath)) {
429 fs.unlinkSync(cacheOutputPath);
629 const cacheOutputPath = info.cacheOutputPath;
633 const abcFilePath = cacheOutputPath.replace(/\.temp\.js$/, ".abc");
634 filesInfo += `${cacheOutputPath};${recordName};${moduleType};${sourceFile};${abcFilePath}\n`;