Home
last modified time | relevance | path

Searched refs:aceModuleBuild (Results 1 – 13 of 13) sorted by relevance

/developtools/ace_js2bundle/ace-loader/
DREADME.md21 Step 2. set aceModuleBuild=path/to/your/jsbundle/build
26 Step 2. export aceModuleBuild=path/to/your/jsbundle/build
Dwebpack.lite.config.js120 …process.env.buildPath = env.aceModuleBuild || process.env.aceModuleBuild || path.resolve(process.e…
Dwebpack.rich.config.js203 process.env.buildPath = env.aceModuleBuild || process.env.aceModuleBuild ||
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/mock/rollup_mock/
Dproject_config.ts86 aceModuleBuild: string; property in ProjectConfig
154 this.aceModuleBuild = `${proPath}/${this.entryModuleName}/${mode}`;
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/
Dutils.ts122 …projectConfig.compileShared ? path.resolve(projectConfig.aceModuleBuild, '../etsFortgz'): projectC…
179 const buildDirArr: string[] = projectConfig.aceModuleBuild.split(path.sep);
193 …(projectConfig.cachePath, TEMPORARY, tailName) : path.join(projectConfig.aceModuleBuild, tailName);
/developtools/ace_ets2bundle/compiler/
Dwebpack.config.js210 if (envArgs.aceModuleBuild) {
211 projectConfig.buildPath = envArgs.aceModuleBuild;
Dmain.js80 projectConfig.buildPath = projectConfig.buildPath || process.env.aceModuleBuild ||
82 …projectConfig.aceModuleBuild = projectConfig.buildPath; // To be compatible with both webpack and …
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/module/
Dmodule_mode.ts148 this.moduleAbcPath = path.join(this.projectConfig.aceModuleBuild, outPutABC);
149 …this.sourceMapPath = this.arkConfig.isDebug ? path.join(this.projectConfig.aceModuleBuild, SOURCEM…
661 mkdirsSync(this.projectConfig.aceModuleBuild);
663 this.projectConfig.aceModuleBuild}" --output ${MODULES_ABC} --suffix protoBin`;
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/bundle/
Dbundle_mode.ts90 if (this.projectConfig.aceModuleBuild && isSpecifiedExt(fileName, EXTNAME_JS)) {
92 const outputPath: string = path.resolve(this.projectConfig.aceModuleBuild, tempFilePath);
/developtools/ace_ets2bundle/compiler/src/fast_build/ets_ui/
Drollup-plugin-ets-typescript.ts211 widgetPath = path.resolve(projectConfig.aceModuleBuild, 'widget');
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/common/
Dprocess_ark_config.test.ts143 `${this.rollup.share.projectConfig.aceModuleBuild}/${LOADER_AOTMODE}`;
/developtools/ace_ets2bundle/compiler/src/
Dark_utils.ts661 … path.join(projectConfig.cachePath, tailName) : path.join(projectConfig.aceModuleBuild, tailName);
Dutils.ts409 …projectConfig.compileShared ? path.resolve(projectConfig.aceModuleBuild, '../etsFortgz') : project…