@nocobase/server 1.9.33 → 1.9.35
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.
|
@@ -169,11 +169,14 @@ var resource_default = {
|
|
|
169
169
|
const distExists = await import_fs_extra.default.exists(dist);
|
|
170
170
|
if (distExists) {
|
|
171
171
|
const fsState = await import_fs_extra.default.stat(distExists ? dist : pkgPath);
|
|
172
|
-
t =
|
|
172
|
+
t = `?t=${fsState.mtime.getTime()}`;
|
|
173
173
|
}
|
|
174
|
-
const url = `${process.env.APP_SERVER_BASE_URL}${process.env.PLUGIN_STATICS_PATH}${item.packageName}/${PLUGIN_CLIENT_ENTRY_FILE}
|
|
174
|
+
const url = `${process.env.APP_SERVER_BASE_URL}${process.env.PLUGIN_STATICS_PATH}${item.packageName}/${PLUGIN_CLIENT_ENTRY_FILE}${t}`;
|
|
175
|
+
const { name, packageName, options } = item.toJSON();
|
|
175
176
|
arr.push({
|
|
176
|
-
|
|
177
|
+
name,
|
|
178
|
+
packageName,
|
|
179
|
+
options,
|
|
177
180
|
url
|
|
178
181
|
});
|
|
179
182
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/server",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.35",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"types": "./lib/index.d.ts",
|
|
6
6
|
"license": "AGPL-3.0",
|
|
@@ -10,20 +10,20 @@
|
|
|
10
10
|
"@koa/cors": "^5.0.0",
|
|
11
11
|
"@koa/multer": "^3.1.0",
|
|
12
12
|
"@koa/router": "^13.1.0",
|
|
13
|
-
"@nocobase/acl": "1.9.
|
|
14
|
-
"@nocobase/actions": "1.9.
|
|
15
|
-
"@nocobase/auth": "1.9.
|
|
16
|
-
"@nocobase/cache": "1.9.
|
|
17
|
-
"@nocobase/data-source-manager": "1.9.
|
|
18
|
-
"@nocobase/database": "1.9.
|
|
19
|
-
"@nocobase/evaluators": "1.9.
|
|
20
|
-
"@nocobase/lock-manager": "1.9.
|
|
21
|
-
"@nocobase/logger": "1.9.
|
|
22
|
-
"@nocobase/resourcer": "1.9.
|
|
23
|
-
"@nocobase/sdk": "1.9.
|
|
24
|
-
"@nocobase/snowflake-id": "1.9.
|
|
25
|
-
"@nocobase/telemetry": "1.9.
|
|
26
|
-
"@nocobase/utils": "1.9.
|
|
13
|
+
"@nocobase/acl": "1.9.35",
|
|
14
|
+
"@nocobase/actions": "1.9.35",
|
|
15
|
+
"@nocobase/auth": "1.9.35",
|
|
16
|
+
"@nocobase/cache": "1.9.35",
|
|
17
|
+
"@nocobase/data-source-manager": "1.9.35",
|
|
18
|
+
"@nocobase/database": "1.9.35",
|
|
19
|
+
"@nocobase/evaluators": "1.9.35",
|
|
20
|
+
"@nocobase/lock-manager": "1.9.35",
|
|
21
|
+
"@nocobase/logger": "1.9.35",
|
|
22
|
+
"@nocobase/resourcer": "1.9.35",
|
|
23
|
+
"@nocobase/sdk": "1.9.35",
|
|
24
|
+
"@nocobase/snowflake-id": "1.9.35",
|
|
25
|
+
"@nocobase/telemetry": "1.9.35",
|
|
26
|
+
"@nocobase/utils": "1.9.35",
|
|
27
27
|
"@types/decompress": "4.2.7",
|
|
28
28
|
"@types/ini": "^1.3.31",
|
|
29
29
|
"@types/koa-send": "^4.1.3",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"@types/serve-handler": "^6.1.1",
|
|
60
60
|
"@types/ws": "^8.5.5"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "091cab14c88a8d41f42b45c48621c07137518d26"
|
|
63
63
|
}
|