backend-manager 5.0.1 → 5.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/.nvmrc +1 -1
  2. package/CHANGELOG.md +1 -0
  3. package/package.json +2 -2
package/.nvmrc CHANGED
@@ -1 +1 @@
1
- v18/*
1
+ v22/*
package/CHANGELOG.md CHANGED
@@ -17,6 +17,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
17
17
  ---#
18
18
  # [5.0.0] - 2025-07-10
19
19
  ### ⚠️ BREAKING
20
+ - Node.js version requirement is now `22`.
20
21
  - `Manager.init()` no longer wraps the initializeApp() in `try/catch` block.
21
22
  - `Settings()` API tries to look for a method-specific file first (e.g., `name/get.js`, `name/post.js`, etc.) before falling back to `name/index.js`. This allows for more modular and organized code structure. Also, `name.js` is no longer valid, we now look for `name/index.js` this is to make it consistent with the `Middleware()` API.
22
23
  - `Middleware()` API now tries to load method-specific files (e.g., `name/get.js`, `name/post.js`, etc.) before falling back to `name/index.js`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backend-manager",
3
- "version": "5.0.1",
3
+ "version": "5.0.2",
4
4
  "description": "Quick tools for developing Firebase functions",
5
5
  "main": "src/manager/index.js",
6
6
  "bin": {
@@ -19,7 +19,7 @@
19
19
  "prepare:watch": "nodemon -w ./src -e '*' --exec 'npm run prepare'"
20
20
  },
21
21
  "engines": {
22
- "node": "18"
22
+ "node": "22"
23
23
  },
24
24
  "repository": {
25
25
  "type": "git",