@olenbetong/appframe-vite 5.1.23 → 5.1.25
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/lib/devServer.js +1 -1
- package/package.json +8 -8
package/lib/devServer.js
CHANGED
|
@@ -125,7 +125,7 @@ async function getArticleHtml() {
|
|
|
125
125
|
let client = new Client(hostname);
|
|
126
126
|
let re = await client.login(username, password);
|
|
127
127
|
let response = await client.fetch(`/${article}`, {
|
|
128
|
-
timeout:
|
|
128
|
+
timeout: 30_000,
|
|
129
129
|
method: "GET",
|
|
130
130
|
});
|
|
131
131
|
if (response.ok) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@olenbetong/appframe-vite",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.25",
|
|
4
4
|
"description": "Tools to use and deploy Vite applications to Appframe",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -19,26 +19,26 @@
|
|
|
19
19
|
"author": "Bjørnar Vister Hansen <bvh@olenbetong.no>",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@olenbetong/appframe-data": "1.0.
|
|
22
|
+
"@olenbetong/appframe-data": "1.0.11",
|
|
23
23
|
"body-parser": "^1.20.2",
|
|
24
24
|
"chalk": "^5.3.0",
|
|
25
25
|
"chokidar": "^3.6.0",
|
|
26
26
|
"dotenv": "^16.4.5",
|
|
27
|
-
"jsdom": "^
|
|
27
|
+
"jsdom": "^25.0.0",
|
|
28
28
|
"rollup-plugin-visualizer": "^5.12.0",
|
|
29
29
|
"vite-plugin-externals": "^0.6.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@types/jsdom": "^21.1.
|
|
33
|
-
"typescript": "^5.
|
|
32
|
+
"@types/jsdom": "^21.1.7",
|
|
33
|
+
"typescript": "^5.5.4"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"vite": "^4.5.0 || ^5.0.0"
|
|
37
37
|
},
|
|
38
38
|
"optionalDependencies": {
|
|
39
|
-
"@types/tcp-port-used": "^1.0.
|
|
40
|
-
"open": "^10.0
|
|
39
|
+
"@types/tcp-port-used": "^1.0.4",
|
|
40
|
+
"open": "^10.1.0",
|
|
41
41
|
"tcp-port-used": "^1.0.2"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "198c77990f2efa888e3d0326172a848da7b426fb"
|
|
44
44
|
}
|