JSPM

@netlify/functions-utils

0.2.4
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 155618
  • Score
    100M100P100Q164884F
  • License MIT

Utility for adding Functions files in Netlify Build

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


Coverage Status Build

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.