Home
last modified time | relevance | path

Searched refs:buildPath (Results 1 – 19 of 19) sorted by relevance

/developtools/ace_js2bundle/ace-loader/src/lite/
Dlite-image-coverter-plugin.js38 getDir(buildPath) { argument
39 const rootDirectory = _path.resolve('', buildPath);
64 const buildPath = this.options.build;
67 const pathArray = getDir(buildPath);
69 fs.writeFile(_path.resolve(buildPath, 'image_convert_result.txt'), content, (err) => {
Dlite-snapshot-plugin.js37 getDir(assets, buildPath) { argument
41 pathArray.push(_path.join(buildPath, item));
51 const buildPath = this.options.build;
53 const pathArray = this.getDir(stats.compilation.assets, buildPath);
/developtools/ace_ets2bundle/compiler/src/fast_build/common/
Dprocess_project_config.ts55 `!${projectConfig.buildPath}`
57 dest: projectConfig.buildPath
68 dest: path.resolve(projectConfig.buildPath, BUILD_SHARE_PATH),
75 dest: projectConfig.buildPath
80 dest: projectConfig.buildPath
/developtools/ace_js2bundle/ace-loader/
Dwebpack.lite.config.js120 …process.env.buildPath = env.aceModuleBuild || process.env.aceModuleBuild || path.resolve(process.e…
123 …process.env.watchCSSFiles = process.env.watchCSSFiles || path.resolve(process.env.buildPath, 'prev…
141 deleteFolderRecursive(process.env.buildPath);
145 webpackConfig.output.path = path.resolve(__dirname, process.env.buildPath)
147 new ResourcePlugin(process.env.projectPath, process.env.buildPath,
150 build: process.env.buildPath
171 to: path.resolve(process.env.buildPath, 'i18n'),
193 new ImageCoverterPlugin({ build: process.env.buildPath }),
211 new SnapshotPlugin({ build: process.env.buildPath })
Dwebpack.rich.config.js203 process.env.buildPath = env.aceModuleBuild || process.env.aceModuleBuild ||
242 config.plugins.push(new GenAbcPlugin(process.env.buildPath, arkDir, nodeJs, workerFile,
246 path.basename(process.env.buildPath));
254 …config.plugins.push(new GenBinPlugin(process.env.buildPath, path.join(__dirname, 'bin', workerFile…
289 deleteFolderRecursive(process.env.buildPath);
297 config.output.path = path.resolve(__dirname, process.env.buildPath)
299 new ResourcePlugin(process.env.projectPath, process.env.buildPath,
302 build: process.env.buildPath
325 to: path.resolve(process.env.buildPath, 'i18n'),
336 to: path.resolve(process.env.buildPath, 'config.json'),
Dmain.product.js127 `aceModuleBuild=${process.env.buildPath}`;
/developtools/ace_js2bundle/ace-loader/src/
Dcompile-plugin.js52 const buildPath = this.options.build;
87 circularFile(commonPath, path.resolve(buildPath, '../share/common'));
90 circularFile(i18nPath, path.resolve(buildPath, '../share/i18n'));
122 printResult(buildPath);
195 const writeError = (buildPath, content) => { argument
196 fs.writeFile(path.resolve(buildPath, 'compile_error.log'), content, (err) => {
203 function printResult(buildPath) { argument
205 printError(buildPath);
285 function printError(buildPath) { argument
313 writeError(buildPath, errorContent);
DgenAbc-plugin.js170 function writeFileSync(inputString, buildPath, keyPath, jsBundleFile, isToBin) { argument
171 let output = path.resolve(buildPath, keyPath);
295 function filterIntermediateJsBundleByHashJson(buildPath, inputPaths) { argument
301 const hashFilePath = genHashJsonPath(buildPath);
360 function genHashJsonPath(buildPath) { argument
361 buildPath = toUnixPath(buildPath);
375 } else if (buildPath.indexOf(ARK) >= 0) {
376 const dataTmps = buildPath.split(ARK);
/developtools/ace_ets2bundle/compiler/src/
Dgen_merged_abc.ts75 const buildPath: string = constant
76 …value.buildPath.replace(toUnixPath(projectConfig.nodeModulesPath), '').replace(new RegExp(NODE_MOD…
77 const entryFile: string = toUnixPath(path.join(buildPath, value.entry));
80 `${toUnixPath(path.join(PACKAGES, buildPath))}:${toUnixPath(path.join(PACKAGES, entry))}\n`;
114 mkdirsSync(projectConfig.buildPath);
Dgen_abc_plugin.ts153 buildPath: string; property in EntryInfo
156 constructor(npmInfo: string, buildPath: string, entry: string) {
158 this.buildPath = buildPath;
325 …EntryPath: string = genBuildPath(fakeEntryPath, projectConfig.projectPath, projectConfig.buildPath,
515 mkdirsSync(projectConfig.buildPath);
516 let sourceMapFilePath: string = path.join(projectConfig.buildPath, SOURCEMAPS);
547 … buildFilePath: string = genBuildPath(filePath, projectConfig.projectPath, projectConfig.buildPath,
590 const outputABCPath: string = path.join(projectConfig.buildPath, MODULES_ABC);
625 function writeFileSync(inputString: string, buildPath: string, keyPath: string, jsBundleFile: strin…
626 let output = path.resolve(buildPath, keyPath);
[all …]
Dutils.ts323 export function genLoaderOutPathOfHar(filePath: string, cachePath: string, buildPath: string, modul…
325 buildPath = toUnixPath(buildPath);
329 const output: string = path.join(buildPath, relativeFilePath);
333 export function genTemporaryPath(filePath: string, projectPath: string, buildPath: string,
341 const output: string = path.join(buildPath, relativeFilePath);
353 … output = path.join(buildPath, buildInHar ? '' : TEMPORARY, packageDir, MAIN, relativeFilePath);
356 path.join(buildPath, buildInHar ? '' : TEMPORARY, packageDir, AUXILIARY));
363 const output: string = path.join(buildPath, buildInHar ? '' : TEMPORARY, relativeFilePath);
Dark_utils.ts533 export function genBuildPath(filePath: string, projectPath: string, buildPath: string, projectConfi…
560 const output: string = path.join(buildPath, sufStr);
/developtools/ace_ets2bundle/compiler/server/
Dbuild_pipe_server.js74 init(cachePath, buildPath, cb) {
75 previewCacheFilePath = path.join(cachePath || buildPath, 'preview.ets');
91 path.join(projectConfig.cachePath || projectConfig.buildPath, 'preview.ets');
93 path.join(projectConfig.cachePath || projectConfig.buildPath, 'preview.js');
95 path.join(projectConfig.cachePath || projectConfig.buildPath, 'preview.abc');
/developtools/ace_ets2bundle/compiler/src/fast_build/ets_ui/
Drollup-plugin-ets-checker.ts68 buildPath: projectConfig.buildPath,
Drollup-plugin-ets-typescript.ts191 projectConfig.buildPath, projectConfig, true);
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/mock/rollup_mock/
Dproject_config.ts95 buildPath: string; property in ProjectConfig
157 this.buildPath = `${proPath}/${this.entryModuleName}/${mode}`;
/developtools/ace_ets2bundle/compiler/
Dwebpack.config.js59 path: path.resolve(__dirname, projectConfig.buildPath),
211 projectConfig.buildPath = envArgs.aceModuleBuild;
284 path.resolve(__dirname, projectConfig.buildPath, '**').replace(/\\/g, '/')
Dmain.js80 projectConfig.buildPath = projectConfig.buildPath || process.env.aceModuleBuild ||
82 …projectConfig.aceModuleBuild = projectConfig.buildPath; // To be compatible with both webpack and …
Drollup.config.js67 dir: path.resolve(__dirname, projectConfig.buildPath),