Skip to content

Commit 701cd88

Browse files
authored
chore: point CLI backwards compatibility @latest instead of @beta (#2572)
1 parent 3f0a312 commit 701cd88

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.changeset/chilled-falcons-judge.md

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+
point CLI backwards compatibility @latest instead of @beta

packages/thirdweb/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
## Installation
1515

1616
```bash
17-
npm install thirdweb@beta
17+
npm install thirdweb
1818
```
1919

2020
## Features

packages/thirdweb/src/cli/bin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ async function main() {
3737
}
3838
const runner = bunAvailable ? "bunx" : "npx";
3939
// eslint-disable-next-line better-tree-shaking/no-top-level-side-effects
40-
spawn(runner, ["--yes", "@thirdweb-dev/cli@beta", command, ...rest], {
40+
spawn(runner, ["--yes", "@thirdweb-dev/cli@latest", command, ...rest], {
4141
stdio: "inherit",
4242
});
4343
}

0 commit comments

Comments
 (0)