You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 22, 2024. It is now read-only.
Copy file name to clipboardexpand all lines: README.md
+19-12
Original file line number
Diff line number
Diff line change
@@ -152,8 +152,18 @@ The following properties are accepted:
152
152
153
153
-`name`
154
154
155
+
-_Type_: `string`
156
+
-_Default value_: undefined
157
+
155
158
A name to use when displaying the function in the Netlify UI. Populates the `displayName` property in the functions manifest for the specified function.
156
159
160
+
-`generator`
161
+
162
+
-_Type_: `string`
163
+
-_Default value_: undefined
164
+
165
+
A field to use if the function has been autogenerated by a plugin or integration. A recommended format is `@netlify/fake-plugin@1.0.0`, where adding the version is highly appreciated.
166
+
157
167
#### `featureFlags`
158
168
159
169
See [feature flags](#feature-flags).
@@ -181,13 +191,6 @@ JSON-formatted string with the following properties:
181
191
182
192
Maximum number of functions to bundle at the same time.
183
193
184
-
#### `internalSrcFolder`
185
-
186
-
-_Type_: `string`
187
-
-_Default value_: `undefined`
188
-
189
-
Defines the path to the folder with internal functions. Used to populate a function's `isInternal` property, if its path is within this specified internal functions folder.
190
-
191
194
### Return value
192
195
193
196
This returns a `Promise` resolving to an array of objects describing each archive. Every object has the following
@@ -213,13 +216,13 @@ properties.
213
216
214
217
The size of the generated archive, in bytes.
215
218
216
-
-`isInternal``boolean`
219
+
-`displayName`: `string`
217
220
218
-
If the function path has a match with the `internalSrcFolder` property, this boolean will be true.
221
+
If there was a user-defined configuration object applied to the function, and it had a `name` defined. This will be returned here.
219
222
220
-
-`displayName``string`
223
+
-`generator`:`string`
221
224
222
-
If there was a user-defined configuration object applied to the function, and it had a `name` defined. This will be returned here.
225
+
If there was a user-defined configuration object applied to the function, and it had `generator` defined. This will be returned here.
223
226
224
227
Additionally, the following properties also exist for Node.js functions:
225
228
@@ -315,7 +318,7 @@ Each object has the following properties:
315
318
Function's name. This is the one used in the Function URL. For example, if a Function is a `myFunc.js` regular file,
316
319
the `name` is `myFunc` and the URL is `https://{hostname}/.netlify/functions/myFunc`.
317
320
318
-
-`displayName``string`
321
+
-`displayName`:`string`
319
322
320
323
If there was a user-defined configuration object applied to the function, and it had a `name` defined. This will be returned here.
321
324
@@ -332,6 +335,10 @@ Each object has the following properties:
332
335
333
336
Source file extension. For Node.js, this is either `.js`, `.ts` or `.zip`. For Go, this can be anything.
334
337
338
+
-`generator`: `string`
339
+
340
+
If there was a user-defined configuration object applied to the function, and it had `generator` defined. This will be returned here.
341
+
335
342
## listFunctionsFiles(srcFolders)
336
343
337
344
Like [`listFunctions()`](#listfunctionssrcfolders-options), except it returns not only the Functions main files, but also all
1 commit comments
github-actions[bot] commentedon Feb 17, 2023
⏱ Benchmark results