We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent febab0f commit 282f9b9Copy full SHA for 282f9b9
src/deploy/functions/runtimes/node/parseRuntimeAndValidateSDK.ts
@@ -28,12 +28,12 @@ export const RUNTIME_NOT_SET =
28
29
export const UNSUPPORTED_NODE_VERSION_FIREBASE_JSON_MSG = clc.bold(
30
`functions.runtime value is unsupported. ` +
31
- `Valid choices are: ${clc.bold("nodejs{10|12|14|16|18}")}.`
+ `Valid choices are: ${clc.bold("nodejs{10|12|14|16|18|20}")}.`
32
);
33
34
export const UNSUPPORTED_NODE_VERSION_PACKAGE_JSON_MSG = clc.bold(
35
`package.json in functions directory has an engines field which is unsupported. ` +
36
- `Valid choices are: ${clc.bold('{"node": 10|12|14|16|18}')}`
+ `Valid choices are: ${clc.bold('{"node": 10|12|14|16|18|20}')}`
37
38
39
export const DEPRECATED_NODE_VERSION_INFO =
0 commit comments