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.
feat: Make additional function attributes available via functions manifest (#1221)
* feat: pass additional-function-attributes
* chore: make attributes available to functions manifest
* fix: fix linting
* fix: use optional chaining
* fix: add ext
* fix: fix tests
* fix: change internal directory name in constants.ts
* feat: add test for go functions with displayName and from an internal functions folder
* feat: add test for rust functions build from internal folder with displayName property
* feat: add test for nodejs functions build from internal folder with displayName property
* test: figure out windows breakn
* fix: take windows paths into account when checking for internal functions
* test: add unit test for checkIsInternalFunction
* docs: add new return values
* test: move tests into a better fixtures structure
* fix: use unixify for checkIsInternalFunction, config, bundler, module and resolve
* feat: add internalFunctionsFolder option to zipfunctionoptions
* test: fix tests
* test: add test for zipFunction and code to support that as well
* test: change toBeTruthy to toBe(true) and isInternalFunction to internalFunction
* chore: change displayName input to name
* chore: change internalFunction to isInternal
* chore: revert unixify, rename tests and internalFunctionsFolder to internalSrcFolder
* test: revert unixify for module to see if windows test still fails
* Revert "test: revert unixify for module to see if windows test still fails"
This reverts commit b444d1c.
Co-authored-by: khen <30577427+khendrikse@users.noreply.github.com>
Copy file name to clipboardexpand all lines: README.md
+22-3
Original file line number
Diff line number
Diff line change
@@ -150,6 +150,10 @@ The following properties are accepted:
150
150
The `[name]` placeholder will be replaced by the name of the function, allowing you to use it to construct the path to
151
151
the target directory.
152
152
153
+
-`name`
154
+
155
+
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
+
153
157
#### `featureFlags`
154
158
155
159
See [feature flags](#feature-flags).
@@ -159,7 +163,7 @@ See [feature flags](#feature-flags).
159
163
-_Type_: `string`
160
164
-_Default value_: `undefined`
161
165
162
-
Defines the pathfor a manifest file to be created with the results of the functions bundling. This file is a
166
+
Defines the full path, including the file name, to use for the manifest file that will be created with the functions bundling results. For example, `path/to/manifest.json`. This file is a
163
167
JSON-formatted string with the following properties:
164
168
165
169
-`functions`: An array with the functions created, in the same format as returned by `zipFunctions`
@@ -172,11 +176,18 @@ JSON-formatted string with the following properties:
172
176
173
177
#### `parallelLimit`
174
178
175
-
-_Type_: `number`\
179
+
-_Type_: `number`
176
180
-_Default value_: `5`
177
181
178
182
Maximum number of functions to bundle at the same time.
179
183
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
+
180
191
### Return value
181
192
182
193
This returns a `Promise` resolving to an array of objects describing each archive. Every object has the following
@@ -202,6 +213,14 @@ properties.
202
213
203
214
The size of the generated archive, in bytes.
204
215
216
+
-`isInternal``boolean`
217
+
218
+
If the function path has a match with the `internalSrcFolder` property, this boolean will be true.
219
+
220
+
-`displayName``string`
221
+
222
+
If there was a user-defined configuration object applied to the function, and it had a `name` defined. This will be returned here.
223
+
205
224
Additionally, the following properties also exist for Node.js functions:
206
225
207
226
-`bundler`: `string`
@@ -257,7 +276,7 @@ Additionally, the following properties also exist for Node.js functions:
1 commit comments
github-actions[bot] commentedon Jan 12, 2023
⏱ Benchmark results