sonamu 0.7.9 → 0.7.10
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/bin/cli.js +6 -2
- package/package.json +7 -7
package/bin/cli.js
CHANGED
|
@@ -18,7 +18,11 @@
|
|
|
18
18
|
*
|
|
19
19
|
* 이 스크립트를 실행시킬 때 넘어온 인자와 환경변수 등은 모두 dist/bin/cli.js에 그대로 전달됩니다.
|
|
20
20
|
*/
|
|
21
|
-
import('../dist/bin/cli.js').catch(() => {
|
|
22
|
-
console.error(
|
|
21
|
+
import('../dist/bin/cli.js').catch((e) => {
|
|
22
|
+
console.error("Sonamu CLI를 실행하는 과정에 문제가 발생하였습니다. 보통은 dist/bin/cli.js 파일이 없는 경우입니다만, 아래 에러 메시지를 자세히 읽어보시면 힌트를 얻으실 수 있을 것입니다.");
|
|
23
|
+
console.error("There was an error while executing Sonamu CLI. Usually it's because dist/bin/cli.js file is not found. Please read the error message below for more information.");
|
|
24
|
+
console.error("=".repeat(80));
|
|
25
|
+
console.error(e);
|
|
26
|
+
|
|
23
27
|
process.exit(1);
|
|
24
28
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sonamu",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.10",
|
|
4
4
|
"description": "Sonamu — TypeScript Fullstack API Framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -76,9 +76,9 @@
|
|
|
76
76
|
"tsicli": "^1.0.5",
|
|
77
77
|
"vitest": "^4.0.10",
|
|
78
78
|
"zod": "^4.1.12",
|
|
79
|
-
"@sonamu-kit/hmr-runner": "^0.1.1",
|
|
80
79
|
"@sonamu-kit/ts-loader": "^2.1.3",
|
|
81
|
-
"@sonamu-kit/hmr-hook": "^0.4.1"
|
|
80
|
+
"@sonamu-kit/hmr-hook": "^0.4.1",
|
|
81
|
+
"@sonamu-kit/hmr-runner": "^0.1.1"
|
|
82
82
|
},
|
|
83
83
|
"devDependencies": {
|
|
84
84
|
"@biomejs/biome": "^2.3.7",
|
|
@@ -94,12 +94,12 @@
|
|
|
94
94
|
"typescript": "^5.9.3"
|
|
95
95
|
},
|
|
96
96
|
"peerDependencies": {
|
|
97
|
-
"@ai-sdk/openai": "
|
|
98
|
-
"@ai-sdk/provider": "
|
|
99
|
-
"@ai-sdk/provider-utils": "
|
|
97
|
+
"@ai-sdk/openai": "3.0.0-beta.75",
|
|
98
|
+
"@ai-sdk/provider": "3.0.0-beta.22",
|
|
99
|
+
"@ai-sdk/provider-utils": "4.0.0-beta.40",
|
|
100
100
|
"@swc/cli": "^0.7.8",
|
|
101
101
|
"@swc/core": "^1.13.5",
|
|
102
|
-
"ai": "
|
|
102
|
+
"ai": "6.0.0-beta.138",
|
|
103
103
|
"fastify": "^4.23.2",
|
|
104
104
|
"knex": "^3.1.0",
|
|
105
105
|
"typescript": "^5.9.3",
|