@netlify/config 24.1.2 → 24.2.1
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.
|
@@ -175,6 +175,15 @@ export const POST_NORMALIZE_VALIDATIONS: ({
|
|
|
175
175
|
functions: string;
|
|
176
176
|
};
|
|
177
177
|
};
|
|
178
|
+
} | {
|
|
179
|
+
property: string;
|
|
180
|
+
check: (value: any) => value is string;
|
|
181
|
+
message: string;
|
|
182
|
+
example: () => {
|
|
183
|
+
build: {
|
|
184
|
+
ignore: string;
|
|
185
|
+
};
|
|
186
|
+
};
|
|
178
187
|
} | {
|
|
179
188
|
property: string;
|
|
180
189
|
check: (value: any) => value is string;
|
|
@@ -167,6 +167,12 @@ export const POST_NORMALIZE_VALIDATIONS = [
|
|
|
167
167
|
message: 'must be a string.',
|
|
168
168
|
example: () => ({ build: { functions: 'functions' } }),
|
|
169
169
|
},
|
|
170
|
+
{
|
|
171
|
+
property: 'build.ignore',
|
|
172
|
+
check: isString,
|
|
173
|
+
message: 'must be a string.',
|
|
174
|
+
example: () => ({ build: { ignore: 'ignore' } }),
|
|
175
|
+
},
|
|
170
176
|
{
|
|
171
177
|
property: 'build.edge_functions',
|
|
172
178
|
check: isString,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netlify/config",
|
|
3
|
-
"version": "24.1
|
|
3
|
+
"version": "24.2.1",
|
|
4
4
|
"description": "Netlify config module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./lib/index.js",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"license": "MIT",
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@iarna/toml": "^2.2.5",
|
|
62
|
-
"@netlify/api": "^14.0.
|
|
62
|
+
"@netlify/api": "^14.0.13",
|
|
63
63
|
"@netlify/headers-parser": "^9.0.2",
|
|
64
64
|
"@netlify/redirect-parser": "^15.0.3",
|
|
65
65
|
"chalk": "^5.0.0",
|
|
@@ -96,5 +96,5 @@
|
|
|
96
96
|
"engines": {
|
|
97
97
|
"node": ">=18.14.0"
|
|
98
98
|
},
|
|
99
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "39451b627207d82ce41919a1c9cd02a6ea6c4ad2"
|
|
100
100
|
}
|