@seayoo-web/finder 2.0.13 → 2.0.14
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/dist/index.js +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -152,7 +152,7 @@ async function deploy(option) {
|
|
|
152
152
|
}
|
|
153
153
|
});
|
|
154
154
|
if (status !== 200) {
|
|
155
|
-
throw `部署接口错误(status ${status}
|
|
155
|
+
throw `部署接口错误(status ${status})${JSON.stringify(data)}`.red;
|
|
156
156
|
}
|
|
157
157
|
if (!data || typeof data !== "object" || "err" in data && data.err || !("data" in data) || typeof data.data !== "string") {
|
|
158
158
|
throw `部署接口响应错误。 ${JSON.stringify(data)}`.red;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seayoo-web/finder",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.14",
|
|
4
4
|
"description": "agent for web finder",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"source": "index.ts",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"README.md"
|
|
14
14
|
],
|
|
15
15
|
"engines": {
|
|
16
|
-
"node": ">=
|
|
16
|
+
"node": ">=22"
|
|
17
17
|
},
|
|
18
18
|
"author": "web@seayoo.com",
|
|
19
19
|
"license": "MIT",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/node": "^22.13.1",
|
|
30
30
|
"vitest": "^3.0.5",
|
|
31
|
-
"@seayoo-web/tsconfig": "^1.0.
|
|
31
|
+
"@seayoo-web/tsconfig": "^1.0.3"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
34
|
"build": "vite build && tsc --emitDeclarationOnly",
|