@aixyz/cli 0.27.0 → 0.28.0
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.
- package/build/index.ts +6 -0
- package/package.json +3 -3
package/build/index.ts
CHANGED
|
@@ -290,12 +290,18 @@ async function buildVercel(
|
|
|
290
290
|
console.log("Copied app/icon →", staticDir);
|
|
291
291
|
}
|
|
292
292
|
|
|
293
|
+
// Copy .env files into the function directory for runtime env loading
|
|
294
|
+
const copiedEnvFiles = copyEnvFiles(cwd, funcDir);
|
|
295
|
+
|
|
293
296
|
// Log summary
|
|
294
297
|
console.log("");
|
|
295
298
|
console.log("Build complete! Output:");
|
|
296
299
|
console.log(" .vercel/output/config.json");
|
|
297
300
|
console.log(" .vercel/output/functions/index.func/server.js");
|
|
298
301
|
console.log(" .vercel/output/static/");
|
|
302
|
+
for (const envFile of copiedEnvFiles) {
|
|
303
|
+
console.log(` .vercel/output/functions/index.func/${envFile}`);
|
|
304
|
+
}
|
|
299
305
|
}
|
|
300
306
|
|
|
301
307
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aixyz/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.28.0",
|
|
4
4
|
"description": "Payment-native SDK for AI Agent",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"bin.ts"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@aixyz/config": "0.
|
|
32
|
-
"@aixyz/erc-8004": "0.
|
|
31
|
+
"@aixyz/config": "0.28.0",
|
|
32
|
+
"@aixyz/erc-8004": "0.28.0",
|
|
33
33
|
"@inquirer/prompts": "^8.3.0",
|
|
34
34
|
"@next/env": "^16.1.6",
|
|
35
35
|
"boxen": "^8.0.1",
|