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

15 lines
258 B
TypeScript

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