firebase-tools 11.18.0 → 11.20.0

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 (35) hide show
  1. package/lib/api.js +3 -2
  2. package/lib/bin/firebase.js +0 -0
  3. package/lib/commands/functions-delete.js +1 -1
  4. package/lib/commands/index.js +5 -0
  5. package/lib/commands/internaltesting-functions-discover.js +25 -0
  6. package/lib/deploy/extensions/prepare.js +6 -1
  7. package/lib/deploy/extensions/v2FunctionHelper.js +53 -0
  8. package/lib/deploy/functions/build.js +17 -2
  9. package/lib/deploy/functions/cel.js +90 -13
  10. package/lib/deploy/functions/params.js +141 -6
  11. package/lib/deploy/functions/prepare.js +40 -25
  12. package/lib/deploy/functions/release/fabricator.js +27 -1
  13. package/lib/deploy/functions/runtimes/discovery/parsing.js +7 -1
  14. package/lib/deploy/functions/runtimes/discovery/v1alpha1.js +1 -1
  15. package/lib/deploy/functions/runtimes/node/index.js +2 -2
  16. package/lib/deploy/functions/runtimes/node/versioning.js +30 -14
  17. package/lib/emulator/auth/operations.js +1 -1
  18. package/lib/emulator/commandUtils.js +2 -1
  19. package/lib/emulator/downloadableEmulators.js +6 -6
  20. package/lib/emulator/env.js +29 -27
  21. package/lib/emulator/extensionsEmulator.js +14 -9
  22. package/lib/emulator/functionsEmulator.js +16 -8
  23. package/lib/emulator/pubsubEmulator.js +13 -1
  24. package/lib/emulator/storage/rules/runtime.js +2 -2
  25. package/lib/emulator/workQueue.js +11 -6
  26. package/lib/experiments.js +6 -0
  27. package/lib/extensions/emulator/triggerHelper.js +12 -2
  28. package/lib/frameworks/index.js +7 -1
  29. package/lib/frameworks/next/constants.js +10 -0
  30. package/lib/frameworks/next/index.js +146 -146
  31. package/lib/frameworks/next/utils.js +65 -7
  32. package/lib/gcp/eventarc.js +42 -0
  33. package/lib/serve/hosting.js +5 -5
  34. package/npm-shrinkwrap.json +463 -737
  35. package/package.json +2 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "firebase-tools",
3
- "version": "11.18.0",
3
+ "version": "11.20.0",
4
4
  "description": "Command-Line Interface for Firebase",
5
5
  "main": "./lib/index.js",
6
6
  "bin": {
@@ -106,7 +106,7 @@
106
106
  "stream-chain": "^2.2.4",
107
107
  "stream-json": "^1.7.3",
108
108
  "strip-ansi": "^6.0.1",
109
- "superstatic": "^8.0.0",
109
+ "superstatic": "^9.0.2",
110
110
  "tar": "^6.1.11",
111
111
  "tcp-port-used": "^1.0.2",
112
112
  "tmp": "^0.2.1",
@@ -118,8 +118,5 @@
118
118
  "winston": "^3.0.0",
119
119
  "winston-transport": "^4.4.0",
120
120
  "ws": "^7.2.3"
121
- },
122
- "optionalDependencies": {
123
- "esbuild": "^0.15.7"
124
121
  }
125
122
  }