@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.
Files changed (2) hide show
  1. package/lib/devServer.js +1 -1
  2. 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: 30000,
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.23",
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.9",
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": "^24.0.0",
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.6",
33
- "typescript": "^5.3.3"
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.1",
40
- "open": "^10.0.3",
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": "958c2d186b477c03643e17a94948182ee022c4c4"
43
+ "gitHead": "198c77990f2efa888e3d0326172a848da7b426fb"
44
44
  }