@netlify/build 29.24.0 → 29.24.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.
package/lib/error/type.js CHANGED
@@ -95,7 +95,7 @@ const TYPES = {
95
95
  secretScanningFoundSecrets: {
96
96
  title: 'Secrets scanning detected secrets in files during build.',
97
97
  stackType: 'none',
98
- severity: 'error',
98
+ severity: 'info',
99
99
  },
100
100
  // Plugin called `utils.build.failBuild()`
101
101
  failBuild: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netlify/build",
3
- "version": "29.24.0",
3
+ "version": "29.24.2",
4
4
  "description": "Netlify build module",
5
5
  "type": "module",
6
6
  "exports": "./lib/index.js",
@@ -68,7 +68,7 @@
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.4.1",
72
72
  "@netlify/framework-info": "^9.8.10",
73
73
  "@netlify/functions-utils": "^5.2.37",
74
74
  "@netlify/git-utils": "^5.1.1",
@@ -146,5 +146,5 @@
146
146
  "engines": {
147
147
  "node": "^14.16.0 || >=16.0.0"
148
148
  },
149
- "gitHead": "d2322081693fa4fea32710d5551d5cf33b92ee33"
149
+ "gitHead": "be59178749568637521c22fc754773cfc48552eb"
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
  }