We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 407a65b commit 39c8a2bCopy full SHA for 39c8a2b
1 file changed
tools/lib/adev.ts
@@ -11,13 +11,13 @@ const $$ = $({
11
12
export async function buildAdev() {
13
const sh = $$({ cwd: buildDir });
14
- await sh`yarn install --frozen-lockfile`;
15
- await sh`yarn bazel build //adev:build --full_build_adev --config=release`;
+ await sh`pnpm install --frozen-lockfile`;
+ await sh`pnpm bazel build //adev:build --full_build_adev --config=release`;
16
}
17
18
export function serveAdev() {
19
const sh = $$({ cwd: buildDir, reject: false });
20
- const p = sh`yarn ibazel run //adev:serve`;
+ const p = sh`pnpm ibazel run //adev:serve`;
21
const pid = p.pid!;
22
consola.log(`adev process started: ${pid}`);
23
const abort = () => process.kill(pid!);
0 commit comments