@vercel/fs-detectors 5.2.0 → 5.2.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.
@@ -426,10 +426,10 @@ function validateFunctions({ functions = {} }) {
426
426
  message: "Functions must have a duration between 1 and 900."
427
427
  };
428
428
  }
429
- if (func.memory !== void 0 && (func.memory < 128 || func.memory > 3008)) {
429
+ if (func.memory !== void 0 && (func.memory < 128 || func.memory > 3009)) {
430
430
  return {
431
431
  code: "invalid_function_memory",
432
- message: "Functions must have a memory value between 128 and 3008"
432
+ message: "Functions must have a memory value between 128 and 3009"
433
433
  };
434
434
  }
435
435
  if (path.startsWith("/")) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/fs-detectors",
3
- "version": "5.2.0",
3
+ "version": "5.2.2",
4
4
  "description": "Vercel filesystem detectors",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -15,7 +15,7 @@
15
15
  "license": "Apache-2.0",
16
16
  "dependencies": {
17
17
  "@vercel/error-utils": "2.0.2",
18
- "@vercel/frameworks": "3.0.0",
18
+ "@vercel/frameworks": "3.0.1",
19
19
  "@vercel/routing-utils": "3.1.0",
20
20
  "glob": "8.0.3",
21
21
  "js-yaml": "4.1.0",
@@ -30,7 +30,7 @@
30
30
  "@types/minimatch": "3.0.5",
31
31
  "@types/node": "14.18.33",
32
32
  "@types/semver": "7.3.10",
33
- "@vercel/build-utils": "7.7.0",
33
+ "@vercel/build-utils": "7.10.0",
34
34
  "jest-junit": "16.0.0",
35
35
  "typescript": "4.9.5"
36
36
  },