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.
|
#!/usr/bin/env zx
|
|
import { echo, $ } from "zx";
|
|
|
|
echo("开始构建 development ...");
|
|
echo("当前所在的目录是:", process.cwd());
|
|
|
|
await $`npm run types`;
|
|
|
|
await $`npm run build:plugin`;
|
|
|
|
await $`npm run build:mobile`;
|