@vercel/python 6.15.0 → 6.15.1
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 +4 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -2753,7 +2753,7 @@ var import_util2 = require("util");
|
|
|
2753
2753
|
var import_path8 = require("path");
|
|
2754
2754
|
|
|
2755
2755
|
// src/runtime-version.ts
|
|
2756
|
-
var VERCEL_RUNTIME_VERSION = "0.5.
|
|
2756
|
+
var VERCEL_RUNTIME_VERSION = "0.5.1";
|
|
2757
2757
|
|
|
2758
2758
|
// src/index.ts
|
|
2759
2759
|
var import_build_utils9 = require("@vercel/build-utils");
|
|
@@ -4024,6 +4024,9 @@ async function mirrorPackagesIntoVendor({
|
|
|
4024
4024
|
continue;
|
|
4025
4025
|
}
|
|
4026
4026
|
const srcFsPath = (0, import_path5.join)(dir, filePath);
|
|
4027
|
+
if (!import_fs4.default.existsSync(srcFsPath)) {
|
|
4028
|
+
continue;
|
|
4029
|
+
}
|
|
4027
4030
|
const bundlePath = (0, import_path5.join)(vendorDirName, filePath).replace(/\\/g, "/");
|
|
4028
4031
|
vendorFiles[bundlePath] = new import_build_utils5.FileFsRef({ fsPath: srcFsPath });
|
|
4029
4032
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/python",
|
|
3
|
-
"version": "6.15.
|
|
3
|
+
"version": "6.15.1",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://vercel.com/docs/runtimes#official-runtimes/python",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"smol-toml": "1.5.2",
|
|
35
35
|
"vitest": "2.1.4",
|
|
36
36
|
"which": "3.0.0",
|
|
37
|
-
"@vercel/error-utils": "2.0.3",
|
|
38
37
|
"@vercel/build-utils": "13.4.3",
|
|
39
|
-
"@vercel/
|
|
38
|
+
"@vercel/error-utils": "2.0.3",
|
|
39
|
+
"@vercel/python-runtime": "0.5.1"
|
|
40
40
|
},
|
|
41
41
|
"scripts": {
|
|
42
42
|
"build": "node ../../utils/build-builder.mjs",
|