@netlify/build 29.24.1 → 29.24.3

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": "29.24.1",
3
+ "version": "29.24.3",
4
4
  "description": "Netlify build module",
5
5
  "type": "module",
6
6
  "exports": "./lib/index.js",
@@ -68,13 +68,13 @@
68
68
  "@honeycombio/opentelemetry-node": "^0.5.0",
69
69
  "@netlify/cache-utils": "^5.1.5",
70
70
  "@netlify/config": "^20.9.0",
71
- "@netlify/edge-bundler": "9.4.0",
71
+ "@netlify/edge-bundler": "9.5.0",
72
72
  "@netlify/framework-info": "^9.8.10",
73
- "@netlify/functions-utils": "^5.2.37",
73
+ "@netlify/functions-utils": "^5.2.38",
74
74
  "@netlify/git-utils": "^5.1.1",
75
75
  "@netlify/plugins-list": "^6.71.0",
76
76
  "@netlify/run-utils": "^5.1.1",
77
- "@netlify/zip-it-and-ship-it": "9.25.4",
77
+ "@netlify/zip-it-and-ship-it": "9.25.6",
78
78
  "@opentelemetry/api": "^1.4.1",
79
79
  "@opentelemetry/core": "^1.17.1",
80
80
  "@sindresorhus/slugify": "^2.0.0",
@@ -146,5 +146,5 @@
146
146
  "engines": {
147
147
  "node": "^14.16.0 || >=16.0.0"
148
148
  },
149
- "gitHead": "579d2c9a6e371cb7ab877d30254c6f5517004e1a"
149
+ "gitHead": "5010beda1eafc633a34b03f21472ca7bae1a9b08"
150
150
  }
@@ -55,4 +55,12 @@ export interface NetlifyPluginConstants {
55
55
  * the Netlify site ID
56
56
  */
57
57
  SITE_ID: string
58
+ /**
59
+ * the Netlify API access token
60
+ */
61
+ NETLIFY_API_TOKEN?: string
62
+ /**
63
+ * the Netlify API host
64
+ */
65
+ NETLIFY_API_HOST?: string
58
66
  }
@@ -20,4 +20,5 @@ export interface NetlifyPluginOptions<TInputs extends PluginInputs<StringKeys<TI
20
20
  packageJson: Partial<Record<string, JSONValue>>
21
21
  constants: NetlifyPluginConstants
22
22
  utils: NetlifyPluginUtils
23
+ featureFlags?: Record<string, unknown>
23
24
  }