Releases: probot/example-netlify-functions
Releases · probot/example-netlify-functions
v3.0.0
3.0.0 (2025-06-04)
Features
BREAKING CHANGES
- Transition to ESM only
Converts the repository to use ESM syntax, enabling module support.
- Adds
"type": "module"
topackage.json
to specify ESM support. - Updates
app.js
andnetlify/functions/webhooks.js
by replacingrequire
statements withimport
statements and changingmodule.exports
toexport default
. - Modifies
test.js
to use ESM import/export syntax, including updatingrequire
statements toimport
and changingmodule.exports
toexport default
for the test suite.