You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
m3u8-downloader-TypeScript/scripts/build.ts

17 lines
290 B
TypeScript

#!/usr/bin/env zx
import { echo, $ } from "zx";
echo("开始构建 production ...");
echo("当前所在的目录是:", process.cwd());
await $`npm run types`;
await $`npm run build:main`;
await $`npm run build:renderer`;
await $`npm run build:plugin`;
await $`npm run build:mobile`;