@netlify/edge-bundler 14.0.5 → 14.0.6
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.
|
@@ -88,7 +88,7 @@ test('fails downloading binary after 4th time', async (ctx) => {
|
|
|
88
88
|
await download(ctx.tmpDir, `^${version}`, testLogger);
|
|
89
89
|
}
|
|
90
90
|
catch (error) {
|
|
91
|
-
expect(error).toMatch(/Download failed with status code 500/);
|
|
91
|
+
expect(error.message).toMatch(/Download failed with status code 500/);
|
|
92
92
|
}
|
|
93
93
|
expect(latestVersionMock.isDone()).toBe(true);
|
|
94
94
|
});
|
|
@@ -118,7 +118,7 @@ test('fails downloading if response stream throws error', async (ctx) => {
|
|
|
118
118
|
await download(ctx.tmpDir, `^${version}`, testLogger);
|
|
119
119
|
}
|
|
120
120
|
catch (error) {
|
|
121
|
-
expect(error).toMatch(/stream error/);
|
|
121
|
+
expect(error.message).toMatch(/stream error/);
|
|
122
122
|
}
|
|
123
123
|
expect(latestVersionMock.isDone()).toBe(true);
|
|
124
124
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netlify/edge-bundler",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.6",
|
|
4
4
|
"description": "Intelligently prepare Netlify Edge Functions for deployment",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/node/index.js",
|
|
@@ -45,14 +45,14 @@
|
|
|
45
45
|
"@types/node": "^18.0.0",
|
|
46
46
|
"@types/semver": "^7.3.9",
|
|
47
47
|
"@types/uuid": "^10.0.0",
|
|
48
|
-
"@vitest/coverage-v8": "^0.
|
|
48
|
+
"@vitest/coverage-v8": "^3.0.0",
|
|
49
49
|
"archiver": "^7.0.0",
|
|
50
50
|
"chalk": "^5.4.0",
|
|
51
51
|
"nock": "^14.0.0",
|
|
52
52
|
"npm-run-all2": "^6.0.0",
|
|
53
53
|
"tar": "^7.0.0",
|
|
54
54
|
"typescript": "^5.0.0",
|
|
55
|
-
"vitest": "^0.
|
|
55
|
+
"vitest": "^3.0.0"
|
|
56
56
|
},
|
|
57
57
|
"engines": {
|
|
58
58
|
"node": ">=18.14.0"
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"better-ajv-errors": "^1.2.0",
|
|
65
65
|
"common-path-prefix": "^3.0.0",
|
|
66
66
|
"env-paths": "^3.0.0",
|
|
67
|
-
"esbuild": "0.25.
|
|
67
|
+
"esbuild": "0.25.5",
|
|
68
68
|
"execa": "^8.0.0",
|
|
69
69
|
"find-up": "^7.0.0",
|
|
70
70
|
"get-package-name": "^2.2.0",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"urlpattern-polyfill": "8.0.2",
|
|
81
81
|
"uuid": "^11.0.0"
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "4a0f587ae4efe1c2e62c25c11374e3fbaa9aebce"
|
|
84
84
|
}
|