Home
last modified time | relevance | path

Searched refs:filesInfoPath (Results 1 – 6 of 6) sorted by relevance

/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/bundle/
Dbundle_mode.ts67 filesInfoPath: string; property in BundleMode
74 this.filesInfoPath = '';
148 this.filesInfoPath = this.generateFileInfoOfBundle();
149 this.generateEs2AbcCmd(this.filesInfoPath);
166 private generateEs2AbcCmd(filesInfoPath: string) {
169 `"@${filesInfoPath}"`,
176 const filesInfoPath: string = genCachePath(FILESINFO_TXT, this.projectConfig, this.logger); constant
186 fs.writeFileSync(filesInfoPath, filesInfo, 'utf-8');
188 return filesInfoPath;
385 if (isEs2Abc(this.projectConfig) && fs.existsSync(this.filesInfoPath)) {
[all …]
/developtools/ace_ets2bundle/compiler/src/
Dgen_merged_abc.ts59 const filesInfoPath: string = path.join(process.env.cachePath, FILESINFO_TXT); constant
60 validateFilePathLength(filesInfoPath, logger);
67 fs.writeFileSync(filesInfoPath, filesInfo, 'utf-8');
107 const filesInfoPath: string = path.join(process.env.cachePath, FILESINFO_TXT); constant
116 …`${initAbcEnv().join(' ')} "@${filesInfoPath}" --npm-module-entry-list "${npmEntriesInfoPath}" --o…
164 …logger.debug(red, `ArkTS:ERROR failed to generate abc with filesInfo ${filesInfoPath}. Error messa…
Dgen_abc_plugin.ts1206 let filesInfoPath = generateFileOfBundle(fileterIntermediateJsBundle);
1209 `${initAbcEnv().join(' ')} "@${filesInfoPath}" --file-threads "${fileThreads}"`;
1223 unlinkSync(filesInfoPath);
1238 …logger.debug(red, `ArkTS:ERROR failed to generate abc with filesInfo ${filesInfoPath}. Error messa…
1246 unlinkSync(filesInfoPath);
1253 let filesInfoPath: string = buildCachePath(FILESINFO_TXT, projectConfig, logger);
1265 fs.writeFileSync(filesInfoPath, filesInfo, 'utf-8');
1267 return filesInfoPath;
/developtools/ace_js2bundle/ace-loader/src/
DgenAbc-plugin.js576 let filesInfoPath = generateFileOfBundle(fileterIntermediateJsBundle);
579 `${initAbcEnv().join(' ')} "@${filesInfoPath}" --file-threads "${fileThreads}"`;
594 unlinkSync(filesInfoPath);
609 …console.debug(red, `ERROR failed to generate abc with filesInfo ${filesInfoPath}. Error message: $…
617 unlinkSync(filesInfoPath);
624 let filesInfoPath = buildCachePath(FILESINFO_TXT);
636 fs.writeFileSync(filesInfoPath, filesInfo, 'utf-8');
638 return filesInfoPath;
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/module/
Dmodule_hotfix_mode.ts47 this.cmdArgs.push(`"@${this.filesInfoPath}"`);
Dmodule_mode.ts120 filesInfoPath: string; property in ModuleMode
138 this.filesInfoPath = path.join(this.projectConfig.cachePath, FILESINFO_TXT);
329 this.cmdArgs.push(`"@${this.filesInfoPath}"`);
353 fs.writeFileSync(this.filesInfoPath, filesInfo, 'utf-8');