Home
last modified time | relevance | path

Searched refs:cacheOutputPath (Results 1 – 5 of 5) sorted by relevance

/developtools/ace_js2bundle/ace-loader/src/
DgenAbc-plugin.js181 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 …]
Dgen-abc.js29 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/
Dgen_abc.ts32 const cacheOutputPath: string = inputPaths[i].cacheOutputPath; constant
33 const cacheAbcFilePath: string = cacheOutputPath.replace(/\.temp\.js$/, ".abc");
35 …const singleCmd: any = `${cmd} "${cacheOutputPath}" -o "${cacheAbcFilePath}" --source-file "${sour…
Dgen_abc_plugin.ts105 cacheOutputPath: string, property
631 let cacheOutputPath: string = "";
635 cacheOutputPath = path.join(process.env.cachePath, TEMPORARY, abilityDir, keyPath);
637 cacheOutputPath = output;
639 validateFilePathLength(cacheOutputPath, logger);
640 parent = path.join(cacheOutputPath, '..');
644 fs.writeFileSync(cacheOutputPath, inputString);
645 if (fs.existsSync(cacheOutputPath)) {
646 const fileSize: any = fs.statSync(cacheOutputPath).size;
654 cacheOutputPath = toUnixPath(cacheOutputPath);
[all …]
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/bundle/
Dbundle_mode.ts90 const cacheOutputPath: string = this.genCacheBundleFilePath(outputPath, tempFilePath); constant
99 fs.writeFileSync(cacheOutputPath, rollupBundleSourceCode, 'utf-8');
100 if (!fs.existsSync(cacheOutputPath)) {
103 this.collectIntermediateJsBundle(outputPath, cacheOutputPath);
226 let cacheOutputPath: string = '';
228cacheOutputPath = path.join(genTemporaryModuleCacheDirectoryForBundle(this.projectConfig), tempFil…
230 cacheOutputPath = outputPath;
232 validateFilePathLength(cacheOutputPath, this.logger);
233 const parentDir: string = path.join(cacheOutputPath, '..');
238 return cacheOutputPath;