Home
last modified time | relevance | path

Searched refs:npmEntriesInfoPath (Results 1 – 4 of 4) sorted by relevance

/developtools/ace_ets2bundle/compiler/src/
Dgen_merged_abc.ts71 const npmEntriesInfoPath: string = path.join(process.env.cachePath, NPMENTRIES_TXT); constant
72 validateFilePathLength(npmEntriesInfoPath, logger);
82 fs.writeFileSync(npmEntriesInfoPath, entriesInfo, 'utf-8');
85 function generateAbcCacheFilesInfo(moduleInfos: Array<ModuleInfo>, npmEntriesInfoPath: string, cach…
96 …let npmEntriesCacheFileWithoutExt: string = npmEntriesInfoPath.substring(0, npmEntriesInfoPath.las…
98 abcCacheFilesInfo += `${npmEntriesInfoPath};${npmEntriesCacheFilePath}\n`;
108 const npmEntriesInfoPath: string = path.join(process.env.cachePath, NPMENTRIES_TXT); constant
111 generateAbcCacheFilesInfo(moduleInfos, npmEntriesInfoPath, cacheFilePath);
116 …`${initAbcEnv().join(' ')} "@${filesInfoPath}" --npm-module-entry-list "${npmEntriesInfoPath}" --o…
Dgen_abc_plugin.ts603 const npmEntriesInfoPath: string = path.join(process.env.cachePath, NPMENTRIES_TXT); constant
604 validateFilePathLength(npmEntriesInfoPath, logger);
616 …const singleCmd: any = `"${js2Abc}" --compile-npm-entries "${npmEntriesInfoPath}" "${npmEntriesPro…
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/module/
Dmodule_mode.ts121 npmEntriesInfoPath: string; property in ModuleMode
139 this.npmEntriesInfoPath = path.join(this.projectConfig.cachePath, NPMENTRIES_TXT);
331 this.cmdArgs.push(`"${this.npmEntriesInfoPath}"`);
361 fs.writeFileSync(this.npmEntriesInfoPath, entriesInfo, 'utf-8');
374 …let npmEntriesCacheFilePath: string = changeFileExtension(this.npmEntriesInfoPath, EXTNAME_PROTO_B…
375 abcCacheFilesInfo += `${this.npmEntriesInfoPath};${npmEntriesCacheFilePath}\n`;
635 this.npmEntriesInfoPath}" "${this.npmEntriesProtoFilePath}"`;
Dmodule_hotfix_mode.ts49 this.cmdArgs.push(`"${this.npmEntriesInfoPath}"`);