@vercel/fs-detectors 5.3.8 → 5.3.10

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.
@@ -432,10 +432,10 @@ function validateFunctions({ functions = {} }) {
432
432
  message: "Functions must have a duration between 1 and 900."
433
433
  };
434
434
  }
435
- if (func.memory !== void 0 && (func.memory < 128 || func.memory > 3009)) {
435
+ if (func.memory !== void 0 && (func.memory < 128 || func.memory > 10240)) {
436
436
  return {
437
437
  code: "invalid_function_memory",
438
- message: "Functions must have a memory value between 128 and 3009"
438
+ message: "Functions must have a memory value between 128 and 10240"
439
439
  };
440
440
  }
441
441
  if (path.startsWith("/")) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/fs-detectors",
3
- "version": "5.3.8",
3
+ "version": "5.3.10",
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.3",
18
- "@vercel/frameworks": "3.6.1",
18
+ "@vercel/frameworks": "3.6.2",
19
19
  "@vercel/routing-utils": "5.0.4",
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": "9.2.1",
33
+ "@vercel/build-utils": "10.5.1",
34
34
  "jest-junit": "16.0.0",
35
35
  "typescript": "4.9.5"
36
36
  },