🎨 Change npm to pnpm

This commit is contained in:
Tw93
2025-08-26 15:10:06 +08:00
parent f084b2fb75
commit 2b45a1f635
14 changed files with 2324 additions and 3713 deletions

View File

@@ -63,12 +63,12 @@ class ReleaseBuildTest {
try {
// Build config
this.log("DEBUG", "Configuring app...");
execSync("npm run build:config", { stdio: "pipe" });
execSync("pnpm run build:config", { stdio: "pipe" });
// Build app
this.log("DEBUG", "Building app package...");
try {
execSync("npm run build:debug", {
execSync("pnpm run build:debug", {
stdio: "pipe",
timeout: 120000, // 2 minutes
env: { ...process.env, PAKE_CREATE_APP: "1" },