* Copyright (c) 2024-2025 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import * as fs from 'fs';
import { program } from 'commander';
import path from 'path';
import { execSync } from 'child_process';
const CWD = process.cwd()
const options = program
.option(`--template [ts_subset|ts_peers|ts_ohos|arkts_subset_tsc|arkts_peers_tsc]`)
.option(`--out <path>`)
.parse()
.opts()
function execOut(command) {
execSync(command, { cwd: options.out, stdio: 'inherit' })
}
function installExternal() {
const externalPackagesToInstall = [
`arkoala-arkts/framework`,
`incremental/compat`,
`incremental/common`,
`incremental/harness`,
`incremental/compiler-plugin`,
`incremental/runtime`,
`interop`,
]
execOut(`npm i`)
for (const pkg of externalPackagesToInstall) {
const pkgRelative = path.relative(options.out, path.join('external', pkg))
console.log(`Compiling package <${pkg}>`)
execOut(`cd ${pkgRelative} && npm run compile`)
console.log(`Installing package <${pkg}>`)
execOut(`npm i ${pkgRelative}`)
}
}
function symlinkSdk() {
const from = path.join(CWD, './interface_sdk-js/api/\@internal/component/ets')
const to = path.join(CWD, options.out, 'sdk')
try {
fs.symlinkSync(from, to)
} catch (e) {
console.log("Symlink failed, try to copy")
fs.cpSync(from, to, { recursive: true })
}
}
function main() {
const templatesHandlers = {
ts_subset: installExternal,
ts_peers: () => {
installExternal()
symlinkSdk()
},
arkts_subset_tsc: installExternal,
arkts_peers_tsc: () => {
installExternal()
symlinkSdk()
},
ts_ohos: installExternal,
}
fs.rmSync(options.out, { recursive: true, force: true })
fs.cpSync(path.join(CWD, 'tools/setup/templates', options.template), options.out, { recursive: true })
templatesHandlers[options.template]()
}
main()