@vercel/static-build 1.3.9 → 1.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -239647,10 +239647,10 @@ function validateFunctions({ functions = {} }) {
239647
239647
  };
239648
239648
  }
239649
239649
  if (func.memory !== undefined &&
239650
- (func.memory < 128 || func.memory > 3008 || func.memory % 64 !== 0)) {
239650
+ (func.memory < 128 || func.memory > 3008)) {
239651
239651
  return {
239652
239652
  code: 'invalid_function_memory',
239653
- message: 'Functions must have a memory value between 128 and 3008 in steps of 64.',
239653
+ message: 'Functions must have a memory value between 128 and 3008',
239654
239654
  };
239655
239655
  }
239656
239656
  if (path.startsWith('/')) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/static-build",
3
- "version": "1.3.9",
3
+ "version": "1.3.10",
4
4
  "license": "MIT",
5
5
  "main": "./dist/index",
6
6
  "homepage": "https://vercel.com/docs/build-step",
@@ -44,7 +44,7 @@
44
44
  "@types/semver": "7.3.13",
45
45
  "@vercel/build-utils": "6.3.0",
46
46
  "@vercel/frameworks": "1.3.1",
47
- "@vercel/fs-detectors": "3.7.14",
47
+ "@vercel/fs-detectors": "3.8.0",
48
48
  "@vercel/ncc": "0.24.0",
49
49
  "@vercel/routing-utils": "2.1.9",
50
50
  "@vercel/static-config": "2.0.13",
@@ -60,5 +60,5 @@
60
60
  "ts-morph": "12.0.0",
61
61
  "typescript": "4.3.4"
62
62
  },
63
- "gitHead": "3d98d1cdea151b7125deb082c2c8469c865027d0"
63
+ "gitHead": "70a53515bd12202f895c369504e2d5be6c9469f4"
64
64
  }