Searched refs:cacheOutputPath (Results 1 – 5 of 5) sorted by relevance
| /developtools/ace_js2bundle/ace-loader/src/ |
| D | genAbc-plugin.js | 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 [all …]
|
| D | gen-abc.js | 29 const cacheOutputPath = inputPaths[i].cacheOutputPath; 30 const cacheAbcFilePath = cacheOutputPath.replace(/\.temp\.js$/, ".abc"); 32 …const singleCmd = `${cmd} "${cacheOutputPath}" -o "${cacheAbcFilePath}" --source-file "${sourceFil…
|
| /developtools/ace_ets2bundle/compiler/src/ |
| D | gen_abc.ts | 32 const cacheOutputPath: string = inputPaths[i].cacheOutputPath; constant 33 const cacheAbcFilePath: string = cacheOutputPath.replace(/\.temp\.js$/, '.abc'); 35 …const singleCmd: string = `${cmd} "${cacheOutputPath}" -o "${cacheAbcFilePath}" --source-file "${s…
|
| D | gen_abc_plugin.ts | 104 cacheOutputPath: string, property 637 let cacheOutputPath: string = ''; 641 cacheOutputPath = path.join(process.env.cachePath, TEMPORARY, abilityDir, keyPath); 643 cacheOutputPath = output; 645 validateFilePathLength(cacheOutputPath, logger); 646 parent = path.join(cacheOutputPath, '..'); 650 fs.writeFileSync(cacheOutputPath, inputString); 651 if (fs.existsSync(cacheOutputPath)) { 652 const fileSize: number = fs.statSync(cacheOutputPath).size; 660 cacheOutputPath = toUnixPath(cacheOutputPath); [all …]
|
| /developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/bundle/ |
| D | bundle_mode.ts | 91 const cacheOutputPath: string = this.genCacheBundleFilePath(outputPath, tempFilePath); constant 101 fs.writeFileSync(cacheOutputPath, rollupBundleSourceCode, 'utf-8'); 102 if (!fs.existsSync(cacheOutputPath)) { 105 this.collectIntermediateJsBundle(outputPath, cacheOutputPath); 239 let cacheOutputPath: string = ''; 241 …cacheOutputPath = path.join(genTemporaryModuleCacheDirectoryForBundle(this.projectConfig), tempFil… 243 cacheOutputPath = outputPath; 245 validateFilePathLength(cacheOutputPath, this.logger); 246 const parentDir: string = path.join(cacheOutputPath, '..'); 251 return cacheOutputPath;
|