@vercel/hydrogen 1.0.1 → 1.0.2
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/dist/index.js +0 -1
- package/package.json +4 -3
package/dist/index.js
CHANGED
|
@@ -120,7 +120,6 @@ var build = async ({
|
|
|
120
120
|
(0, import_build_utils.glob)("**", (0, import_path.join)(entrypointDir, "dist/worker"))
|
|
121
121
|
]);
|
|
122
122
|
const edgeFunction = new import_build_utils.EdgeFunction({
|
|
123
|
-
name: "hydrogen",
|
|
124
123
|
deploymentTarget: "v8-worker",
|
|
125
124
|
entrypoint: "index.js",
|
|
126
125
|
files: edgeFunctionFiles,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/hydrogen",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"homepage": "https://vercel.com/docs",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@types/jest": "27.5.1",
|
|
22
22
|
"@types/node": "14.18.33",
|
|
23
|
-
"@vercel/build-utils": "7.
|
|
23
|
+
"@vercel/build-utils": "7.5.0",
|
|
24
24
|
"execa": "3.2.0",
|
|
25
25
|
"fs-extra": "11.1.0",
|
|
26
26
|
"jest-junit": "16.0.0"
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"scripts": {
|
|
29
29
|
"build": "node ../../utils/build-builder.mjs",
|
|
30
30
|
"test-e2e": "pnpm test test/test.js",
|
|
31
|
-
"test": "jest --reporters=default --reporters=jest-junit --env node --verbose --bail --runInBand"
|
|
31
|
+
"test": "jest --reporters=default --reporters=jest-junit --env node --verbose --bail --runInBand",
|
|
32
|
+
"type-check": "tsc --noEmit"
|
|
32
33
|
}
|
|
33
34
|
}
|