| /developtools/ace_js2bundle/ace-loader/src/lite/ |
| D | lite-image-coverter-plugin.js | 38 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) => {
|
| D | lite-snapshot-plugin.js | 37 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/ |
| D | process_project_config.ts | 55 `!${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/ |
| D | webpack.lite.config.js | 120 …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 172 to: path.resolve(process.env.buildPath, 'i18n'), 194 new ImageCoverterPlugin({ build: process.env.buildPath }), 212 new SnapshotPlugin({ build: process.env.buildPath })
|
| D | webpack.rich.config.js | 203 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'),
|
| D | main.product.js | 127 `aceModuleBuild=${process.env.buildPath}`;
|
| /developtools/ace_js2bundle/ace-loader/src/ |
| D | compile-plugin.js | 52 const buildPath = this.options.build; 87 circularFile(commonPath, path.resolve(buildPath, '../share/common')); 90 circularFile(i18nPath, path.resolve(buildPath, '../share/i18n')); 122 printResult(buildPath); 193 const writeError = (buildPath, content) => { argument 194 fs.writeFile(path.resolve(buildPath, 'compile_error.log'), content, (err) => { 201 function printResult(buildPath) { argument 203 printError(buildPath); 283 function printError(buildPath) { argument 311 writeError(buildPath, errorContent);
|
| D | genAbc-plugin.js | 170 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/ |
| D | gen_merged_abc.ts | 75 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);
|
| D | gen_abc_plugin.ts | 153 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, 514 mkdirsSync(projectConfig.buildPath); 515 let sourceMapFilePath: string = path.join(projectConfig.buildPath, SOURCEMAPS); 546 … buildFilePath: string = genBuildPath(filePath, projectConfig.projectPath, projectConfig.buildPath, 589 const outputABCPath: string = path.join(projectConfig.buildPath, MODULES_ABC); 624 function writeFileSync(inputString: string, buildPath: string, keyPath: string, jsBundleFile: strin… 625 let output = path.resolve(buildPath, keyPath); [all …]
|
| D | utils.ts | 315 export function genTemporaryPath(filePath: string, projectPath: string, buildPath: string, 323 const output: string = path.join(buildPath, relativeFilePath); 335 … output = path.join(buildPath, buildInHar ? '' : TEMPORARY, packageDir, MAIN, relativeFilePath); 338 path.join(buildPath, buildInHar ? '' : TEMPORARY, packageDir, AUXILIARY)); 345 const output: string = path.join(buildPath, buildInHar ? '' : TEMPORARY, relativeFilePath);
|
| D | ark_utils.ts | 431 export function genBuildPath(filePath: string, projectPath: string, buildPath: string, projectConfi… 458 const output: string = path.join(buildPath, sufStr);
|
| /developtools/ace_ets2bundle/compiler/src/fast_build/ets_ui/ |
| D | rollup-plugin-ets-checker.ts | 54 buildPath: projectConfig.buildPath,
|
| D | rollup-plugin-ets-typescript.ts | 142 projectConfig.buildPath, projectConfig, true);
|
| /developtools/ace_ets2bundle/compiler/server/ |
| D | build_pipe_server.js | 74 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/ |
| D | main.js | 78 projectConfig.buildPath = projectConfig.buildPath || process.env.aceModuleBuild || 80 …projectConfig.aceModuleBuild = projectConfig.buildPath; // To be compatible with both webpack and …
|
| D | webpack.config.js | 59 path: path.resolve(__dirname, projectConfig.buildPath), 211 projectConfig.buildPath = envArgs.aceModuleBuild; 284 path.resolve(__dirname, projectConfig.buildPath, '**').replace(/\\/g, '/')
|
| D | rollup.config.js | 67 dir: path.resolve(__dirname, projectConfig.buildPath),
|