Lines Matching refs:cacheAbcFilePath
314 const cacheAbcFilePath = cacheOutputPath.replace(/\.temp\.js$/, '.abc');
321 if (fs.existsSync(cacheAbcFilePath)) {
323 const hashAbcContentData = toHashData(cacheAbcFilePath);
324 …if (jsonObject[cacheOutputPath] === hashInputContentData && jsonObject[cacheAbcFilePath] === hashA…
326 updateJsonObject[cacheAbcFilePath] = hashAbcContentData;
342 const cacheAbcFilePath = cacheOutputPath.replace(/\.temp\.js$/, '.abc');
343 if (!fs.existsSync(cacheOutputPath) || !fs.existsSync(cacheAbcFilePath)) {
349 const hashAbcContentData = toHashData(cacheAbcFilePath);
351 hashJsonObject[cacheAbcFilePath] = hashAbcContentData;
414 const cacheAbcFilePath = intermediateJsBundle[i].cacheOutputPath.replace(/\.temp\.js$/, ".abc");
415 if (!fs.existsSync(cacheAbcFilePath)) {
416 console.debug(red, `ERROR ${cacheAbcFilePath} is lost`, reset);
426 fs.copyFileSync(cacheAbcFilePath, abcFile);