[go: up one dir, main page]

Skip to content

Commit

Permalink
Support experimental extensions in CLI (#2830)
Browse files Browse the repository at this point in the history
Support experimental extensions and add `experimental` warning message when installing extensions from the CLI
  • Loading branch information
i14h committed Jan 7, 2021
1 parent a6580f2 commit f69cb8a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/extensions/resolveSource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ const AUDIENCE_WARNING_MESSAGES: { [key: string]: string } = {
"Firebase Alpha program"
)}.\n This extension is strictly confidential, and its functionality might change in backward-incompatible ways before its official, public release. Learn more: https://dev-partners.googlesource.com/samples/firebase/extensions-alpha/+/refs/heads/master/README.md`
),
experimental: marked(
`${clc.yellow.bold("Important")}: This extension is ${clc.bold(
"experimental"
)} and may not be production-ready. Its functionality might change in backward-incompatible ways before its official release, or it may be discontinued. Learn more: https://github.com/FirebaseExtended/experimental-extensions`
),
};

export interface RegistryEntry {
Expand Down

0 comments on commit f69cb8a

Please sign in to comment.