vercel 44.6.5 → 44.6.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.
- package/dist/index.js +12 -1
- package/package.json +8 -8
package/dist/index.js
CHANGED
|
@@ -116390,6 +116390,14 @@ var require_frameworks = __commonJS2({
|
|
|
116390
116390
|
detectors: {
|
|
116391
116391
|
every: [{ matchPackage: "hono" }],
|
|
116392
116392
|
some: [
|
|
116393
|
+
{
|
|
116394
|
+
path: "server.ts",
|
|
116395
|
+
matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']hono["']\\s*(?:\\))?`
|
|
116396
|
+
},
|
|
116397
|
+
{
|
|
116398
|
+
path: "server.js",
|
|
116399
|
+
matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']hono["']\\s*(?:\\))?`
|
|
116400
|
+
},
|
|
116393
116401
|
{
|
|
116394
116402
|
path: "index.ts",
|
|
116395
116403
|
matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']hono["']\\s*(?:\\))?`
|
|
@@ -119740,7 +119748,10 @@ var require_filesystem = __commonJS2({
|
|
|
119740
119748
|
}
|
|
119741
119749
|
}
|
|
119742
119750
|
if (options?.potentialFiles) {
|
|
119743
|
-
const
|
|
119751
|
+
const filesInReaddirDir = options.potentialFiles.filter(
|
|
119752
|
+
(path11) => (0, import_path41.basename)(path11) === path11
|
|
119753
|
+
);
|
|
119754
|
+
const filesThatDoNotExist = filesInReaddirDir.filter(
|
|
119744
119755
|
(path11) => !directoryFiles.has(path11)
|
|
119745
119756
|
);
|
|
119746
119757
|
for (const filePath of filesThatDoNotExist) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vercel",
|
|
3
|
-
"version": "44.6.
|
|
3
|
+
"version": "44.6.6",
|
|
4
4
|
"preferGlobal": true,
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"description": "The command-line interface for Vercel",
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
"@vercel/build-utils": "11.0.0",
|
|
26
26
|
"@vercel/fun": "1.1.6",
|
|
27
27
|
"@vercel/go": "3.2.2",
|
|
28
|
-
"@vercel/hono": "0.0.
|
|
28
|
+
"@vercel/hono": "0.0.6",
|
|
29
29
|
"@vercel/hydrogen": "1.2.3",
|
|
30
|
-
"@vercel/next": "4.10.
|
|
31
|
-
"@vercel/node": "5.3.
|
|
30
|
+
"@vercel/next": "4.10.10",
|
|
31
|
+
"@vercel/node": "5.3.8",
|
|
32
32
|
"@vercel/python": "5.0.0",
|
|
33
33
|
"@vercel/redwood": "2.3.4",
|
|
34
34
|
"@vercel/remix-builder": "5.4.10",
|
|
@@ -82,8 +82,8 @@
|
|
|
82
82
|
"@types/yauzl-promise": "2.1.0",
|
|
83
83
|
"@vercel/client": "15.3.13",
|
|
84
84
|
"@vercel/error-utils": "2.0.3",
|
|
85
|
-
"@vercel/frameworks": "3.7.
|
|
86
|
-
"@vercel/fs-detectors": "5.4.
|
|
85
|
+
"@vercel/frameworks": "3.7.5",
|
|
86
|
+
"@vercel/fs-detectors": "5.4.11",
|
|
87
87
|
"@vercel/routing-utils": "5.1.1",
|
|
88
88
|
"@vitest/expect": "2.1.3",
|
|
89
89
|
"ajv": "6.12.3",
|
|
@@ -164,8 +164,8 @@
|
|
|
164
164
|
"xdg-app-paths": "5.1.0",
|
|
165
165
|
"yauzl-promise": "2.1.3",
|
|
166
166
|
"@vercel-internals/constants": "1.0.4",
|
|
167
|
-
"@vercel-internals/
|
|
168
|
-
"@vercel-internals/
|
|
167
|
+
"@vercel-internals/get-package-json": "1.0.0",
|
|
168
|
+
"@vercel-internals/types": "3.0.6"
|
|
169
169
|
},
|
|
170
170
|
"scripts": {
|
|
171
171
|
"test": "jest --reporters=default --reporters=jest-junit --env node --verbose --bail",
|