Home
last modified time | relevance | path

Searched refs:jsFilePath (Results 1 – 3 of 3) sorted by relevance

/developtools/ace_ets2bundle/compiler/src/
Dark_utils.ts756 …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…
Dutils.ts409 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/
Drollup_plugin_mock.ts215 …const jsFilePath = path.join(this.share.projectConfig.projectPath, '/entryability/EntryAbility.js'… constant
218 this.share.allFiles.add(jsFilePath);