diff --git a/.changeset/deprecate-create-command.md b/.changeset/deprecate-create-command.md new file mode 100644 index 00000000000..0ebcdd45159 --- /dev/null +++ b/.changeset/deprecate-create-command.md @@ -0,0 +1,5 @@ +--- +"thirdweb": patch +--- + +Deprecate the `thirdweb create` CLI command diff --git a/packages/thirdweb/src/cli/bin.ts b/packages/thirdweb/src/cli/bin.ts index 7519e5f03f2..af60efde145 100755 --- a/packages/thirdweb/src/cli/bin.ts +++ b/packages/thirdweb/src/cli/bin.ts @@ -44,6 +44,14 @@ async function main() { break; } + case "create": { + console.info( + "The 'thirdweb create' command is deprecated. Please use the thirdweb dashboard instead: https://thirdweb.com/dashboard", + ); + process.exit(1); + break; + } + case "login": { // Not implemented yet console.info(