Searched refs:jsFilePath (Results 1 – 3 of 3) sorted by relevance
| /developtools/ace_ets2bundle/compiler/src/ |
| D | ark_utils.ts | 756 …let jsFilePath: string = genTemporaryPath(sourcePath, projectConfig.projectPath, process.env.cache… 758 if (jsFilePath.length === 0) { 761 if (jsFilePath.endsWith(EXTNAME_ETS)) { 762 jsFilePath = jsFilePath.replace(/\.ets$/, EXTNAME_JS); 764 jsFilePath = jsFilePath.replace(/\.ts$/, EXTNAME_JS); 766 let sourceMapFile: string = genSourceMapFileName(jsFilePath); 777 mkdirsSync(path.dirname(jsFilePath)); 779 fs.writeFileSync(jsFilePath, sourceContent); 783 …writeObfuscatedSourceCode({content: sourceContent, buildFilePath: jsFilePath, relativeSourceFilePa…
|
| D | utils.ts | 409 let jsFilePath: string = genTemporaryPath(sourcePath, 413 if (!jsFilePath.match(new RegExp(projectConfig.packageDir))) { 414 jsFilePath = jsFilePath.replace(/\.ets$/, suffix).replace(/\.ts$/, suffix); 419 if (projectConfig.compileMode === ESMODULE && (/\.d\.e?ts$/).test(jsFilePath)) { 423 originalDeclarationCachePath: jsFilePath, 429 mkdirsSync(path.dirname(jsFilePath)); 431 fs.writeFileSync(jsFilePath, sourceContent);
|
| /developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/mock/rollup_mock/ |
| D | rollup_plugin_mock.ts | 215 …const jsFilePath = path.join(this.share.projectConfig.projectPath, '/entryability/EntryAbility.js'… constant 218 this.share.allFiles.add(jsFilePath);
|