Package Exports
- @netlify/functions-utils
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@netlify/functions-utils) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Utility for adding Functions files in Netlify Build.
This allows plugins to dynamically inject Netlify Functions inside users builds.
Example
module.exports = {
// Add a Netlify Functions file or directory to a build
async onPostBuild({ utils }) {
await utils.functions.add('./path/to/function')
},
}
API
add(path)
path
: string
Returns: Promise
Add a Functions file or directory to a build.