create-vike 0.0.385 → 0.0.387

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/.testRun.ts CHANGED
@@ -111,10 +111,10 @@ function testRun(
111
111
  test('error page', async () => {
112
112
  await page.goto(getServerUrl() + '/does-not-exist')
113
113
  expect(await page.textContent('#page-content')).toBe('Page not found.')
114
- expectLog(
115
- 'Failed to load resource: the server responded with a status of 404 (Not Found)',
116
- (log) => log.logSource === 'Browser Error' && partRegex`http://${/[^\/]+/}:3000/does-not-exist`.test(log.logText)
117
- )
114
+ expectLog('Failed to load resource: the server responded with a status of 404 (Not Found)', {
115
+ filter: (log) =>
116
+ log.logSource === 'Browser Error' && partRegex`http://${/[^\/]+/}:3000/does-not-exist`.test(log.logText)
117
+ })
118
118
  })
119
119
 
120
120
  test('data fetching page, HTML', async () => {
@@ -16,7 +16,7 @@
16
16
  "react": "^19.0.0",
17
17
  "react-dom": "^19.0.0",
18
18
  "sirv": "^3.0.0",
19
- "vike": "^0.4.217",
19
+ "vike": "^0.4.219",
20
20
  "vite": "^6.0.5"
21
21
  },
22
22
  "type": "module"
@@ -23,7 +23,7 @@
23
23
  "sirv": "^3.0.0",
24
24
  "ts-node": "^10.9.2",
25
25
  "typescript": "^5.7.2",
26
- "vike": "^0.4.217",
26
+ "vike": "^0.4.219",
27
27
  "vite": "^6.0.5"
28
28
  },
29
29
  "type": "module"
@@ -15,7 +15,7 @@
15
15
  "express": "^4.21.2",
16
16
  "node-fetch": "^3.3.2",
17
17
  "sirv": "^3.0.0",
18
- "vike": "^0.4.217",
18
+ "vike": "^0.4.219",
19
19
  "vite": "^6.0.5",
20
20
  "vue": "^3.5.13"
21
21
  },
@@ -21,7 +21,7 @@
21
21
  "sirv": "^3.0.0",
22
22
  "ts-node": "^10.9.2",
23
23
  "typescript": "^5.7.2",
24
- "vike": "^0.4.217",
24
+ "vike": "^0.4.219",
25
25
  "vite": "^6.0.5",
26
26
  "vue": "^3.5.13",
27
27
  "vue-tsc": "^2.1.10"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-vike",
3
- "version": "0.0.385",
3
+ "version": "0.0.387",
4
4
  "license": "MIT",
5
5
  "bin": {
6
6
  "create-vike": "index.js"