Skip to content

Commit e13b9a7

Browse files
authored
[CLI] Deprecate create (#8700)
1 parent da4a4a5 commit e13b9a7

2 files changed

Lines changed: 13 additions & 0 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"thirdweb": patch
3+
---
4+
5+
Deprecate the `thirdweb create` CLI command

packages/thirdweb/src/cli/bin.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,14 @@ async function main() {
4444
break;
4545
}
4646

47+
case "create": {
48+
console.info(
49+
"The 'thirdweb create' command is deprecated. Please use the thirdweb dashboard instead: https://thirdweb.com/dashboard",
50+
);
51+
process.exit(1);
52+
break;
53+
}
54+
4755
case "login": {
4856
// Not implemented yet
4957
console.info(

0 commit comments

Comments
 (0)