@netlify/build 26.1.7 → 26.5.0-rc

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netlify/build",
3
- "version": "26.1.7",
3
+ "version": "26.5.0-rc",
4
4
  "description": "Netlify build module",
5
5
  "type": "module",
6
6
  "exports": "./src/core/main.js",
@@ -63,7 +63,7 @@
63
63
  "@netlify/plugin-edge-handlers": "^3.0.4",
64
64
  "@netlify/plugins-list": "^6.3.0",
65
65
  "@netlify/run-utils": "^4.0.0",
66
- "@netlify/zip-it-and-ship-it": "^5.4.1",
66
+ "@netlify/zip-it-and-ship-it": "5.5.0",
67
67
  "@sindresorhus/slugify": "^1.1.0",
68
68
  "@types/node": "^16.0.0",
69
69
  "ansi-escapes": "^4.3.2",
@@ -24,6 +24,7 @@ const normalizeFunctionConfig = ({ buildDir, functionConfig = {}, isRunningLocal
24
24
  includedFiles: functionConfig.included_files,
25
25
  includedFilesBasePath: buildDir,
26
26
  ignoredNodeModules: functionConfig.ignored_node_modules,
27
+ schedule: functionConfig.schedule,
27
28
 
28
29
  // When the user selects esbuild as the Node bundler, we still want to use
29
30
  // the legacy ZISI bundler as a fallback. Rather than asking the user to
@@ -36,8 +37,6 @@ const normalizeFunctionConfig = ({ buildDir, functionConfig = {}, isRunningLocal
36
37
  // path that will get cached in between builds, allowing us to speed up the
37
38
  // build process.
38
39
  rustTargetDirectory: isRunningLocally ? undefined : resolve(buildDir, '.netlify', 'rust-functions-cache', '[name]'),
39
-
40
- schedule: functionConfig.schedule,
41
40
  })
42
41
 
43
42
  const getZisiParameters = ({