mtxuilib 0.1.127 → 0.1.129

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -42,10 +42,14 @@ export const vcDeployTool = {
42
42
  });
43
43
  yield (_jsx(BotCard, { children: _jsx("div", { children: "\u6B63\u5728\u6267\u884C\u672C\u5730 build \uFF0C\u65E5\u5FD7\u8F93\u51FA\u5230\uFF1A .vol/gitProjectLogs/vc_deploy_build.log" }) }));
44
44
  const vcBuildLog = resolve(".vol/gitProjectLogs/vc_deploy_build.log");
45
- await exec(`bash -c "npx vercel build --prod --token=${vercelToken} --local-config vercel.json"`, {
45
+ await exec(`bash -c "env && bun vercel build --prod --token=${vercelToken} --local-config vercel.json"`, {
46
46
  shell: true,
47
47
  cwd: projectDir,
48
48
  logPath: vcBuildLog,
49
+ env: {
50
+ ...process.env,
51
+ NEXT_BUILD_OUTPUT: ".next",
52
+ },
49
53
  });
50
54
  yield (_jsx(BotCard, { children: _jsx("div", { children: "build \u5B8C\u6210\uFF0C\u51C6\u5907\u63A8\u9001\u5230vercel" }) }));
51
55
  await exec(`bunx vercel deploy --prod --prebuilt --token=${vercelToken} --local-config vercel.json`, {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mtxuilib",
3
3
  "private": false,
4
- "version": "0.1.127",
4
+ "version": "0.1.129",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },