Skip to content

Commit 39c8a2b

Browse files
committed
fix: use ppm for adev build
1 parent 407a65b commit 39c8a2b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tools/lib/adev.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ const $$ = $({
1111

1212
export async function buildAdev() {
1313
const sh = $$({ cwd: buildDir });
14-
await sh`yarn install --frozen-lockfile`;
15-
await sh`yarn bazel build //adev:build --full_build_adev --config=release`;
14+
await sh`pnpm install --frozen-lockfile`;
15+
await sh`pnpm bazel build //adev:build --full_build_adev --config=release`;
1616
}
1717

1818
export function serveAdev() {
1919
const sh = $$({ cwd: buildDir, reject: false });
20-
const p = sh`yarn ibazel run //adev:serve`;
20+
const p = sh`pnpm ibazel run //adev:serve`;
2121
const pid = p.pid!;
2222
consola.log(`adev process started: ${pid}`);
2323
const abort = () => process.kill(pid!);

0 commit comments

Comments
 (0)