Searched refs:newFilePath (Results 1 – 4 of 4) sorted by relevance
| /developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/ |
| D | utils.ts | 164 const newFilePath: string = tryMangleFileName(filePath, projectConfig, id); constant 165 mkdirsSync(path.dirname(newFilePath)); 166 fs.writeFileSync(newFilePath, content ?? '');
|
| /developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/ |
| D | ark_utils.test.ts | 362 …const newFilePath = '/mnt/application/entry/build/default/cache/default/default@CompileArkTS/esmod… constant 417 expect(afterObfuscateFilePath === newFilePath).to.be.true; 421 expect(result === newFilePath).to.be.true;
|
| /developtools/ace_ets2bundle/compiler/src/ |
| D | ark_utils.ts | 594 …const newFilePath: string = tryMangleFileName(moduleInfo.buildFilePath, projectConfig, moduleInfo.… constant 595 if (newFilePath !== moduleInfo.buildFilePath && !isDeclaration) { 598 mkdirsSync(path.dirname(newFilePath)); 599 fs.writeFileSync(newFilePath, mixedInfo.content ?? '');
|
| /developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/common/ |
| D | utils.test.ts | 281 const newFilePath = changeFileExtension(filePath, EXTNAME_JS); constant 282 const readFilecontent = fs.readFileSync(newFilePath, 'utf-8'); 302 const newFilePath = changeFileExtension(filePath, EXTNAME_JS); constant 303 const readFilecontent = fs.readFileSync(newFilePath, 'utf-8'); 323 const newFilePath = changeFileExtension(filePath, EXTNAME_JS); constant 324 const readFilecontent = fs.readFileSync(newFilePath, 'utf-8'); 343 const newFilePath = changeFileExtension(filePath, EXTNAME_JS); constant 344 const readFilecontent = fs.readFileSync(newFilePath, 'utf-8');
|