@vercel/fs-detectors 6.12.1 → 6.13.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.
@@ -149,6 +149,9 @@ function inferServiceRuntime(config) {
149
149
  }
150
150
  }
151
151
  if (config.entrypoint) {
152
+ if (config.entrypoint === "pyproject.toml" || config.entrypoint.endsWith("/pyproject.toml")) {
153
+ return "python";
154
+ }
152
155
  for (const [ext, runtime] of Object.entries(import_types.ENTRYPOINT_EXTENSIONS)) {
153
156
  if (config.entrypoint.endsWith(ext)) {
154
157
  return runtime;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/fs-detectors",
3
- "version": "6.12.1",
3
+ "version": "6.13.1",
4
4
  "description": "Vercel filesystem detectors",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -20,10 +20,10 @@
20
20
  "minimatch": "3.1.2",
21
21
  "semver": "6.3.1",
22
22
  "smol-toml": "1.5.2",
23
+ "@vercel/build-utils": "13.33.1",
23
24
  "@vercel/error-utils": "2.2.0",
24
- "@vercel/build-utils": "13.32.3",
25
- "@vercel/frameworks": "3.30.6",
26
- "@vercel/routing-utils": "6.4.0"
25
+ "@vercel/routing-utils": "6.4.0",
26
+ "@vercel/frameworks": "3.30.7"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/glob": "7.2.0",