From 04ae8021c51c15a1796f8adc87aa8fbedfc734d6 Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Fri, 11 Oct 2024 15:35:33 +0800 Subject: [PATCH] chore: turn on verbose mode in prepublish script Some of the commands could take a while to run, so it's nice to see the output. --- scripts/prepublish.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/prepublish.mjs b/scripts/prepublish.mjs index 16ecb1a5..e253475d 100644 --- a/scripts/prepublish.mjs +++ b/scripts/prepublish.mjs @@ -1,6 +1,8 @@ #!/usr/bin/env zx import 'zx/globals' +$.verbose = true + await $`pnpm build` await $`pnpm snapshot` -- 2.39.5