Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix the upgrade command for package managers #2491

Merged
merged 1 commit into from
Aug 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/content/docs/blog/tauri-2-0-0-release-candidate.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ You should be able to automatically migrate from the latest beta to release cand
<CommandTabs
npm="npm install @tauri-apps/cli@next
npm run tauri migrate"
yarn="yarn upgrade @tauri-apps/cli --next
yarn="yarn upgrade @tauri-apps/cli@next
yarn tauri migrate"
pnpm="pnpm update @tauri-apps/cli@next
pnpm tauri migrate"
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/es/start/migrate/from-tauri-1.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ La CLI de Tauri v2 incluye un comando `migrate` que automatiza la mayor parte de
<CommandTabs
npm="npm install @tauri-apps/cli@next
npm run tauri migrate"
yarn="yarn upgrade @tauri-apps/cli --next
yarn="yarn upgrade @tauri-apps/cli@next
yarn tauri migrate"
pnpm="pnpm update @tauri-apps/cli@next
pnpm tauri migrate"
Expand Down
4 changes: 2 additions & 2 deletions src/content/docs/fr/start/migrate/from-tauri-1.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ Tauri v2 contient la commande `migrate` qui simplifie votre migration:
<CommandTabs
npm="npm install @tauri-apps/cli@latest
npm run tauri migrate"
yarn="yarn upgrade @tauri-apps/cli --latest
yarn="yarn upgrade @tauri-apps/cli@next
yarn tauri migrate"
pnpm="pnpm update @tauri-apps/cli --latest
pnpm="pnpm update @tauri-apps/cli@next
pnpm tauri migrate"
cargo='cargo install tauri-cli --version "^2.0.0-rc"
cargo tauri migrate'
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/start/migrate/from-tauri-1.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ The Tauri v2 CLI includes a `migrate` command that automates most of the process
<CommandTabs
npm="npm install @tauri-apps/cli@next
npm run tauri migrate"
yarn="yarn upgrade @tauri-apps/cli --next
yarn="yarn upgrade @tauri-apps/cli@next
yarn tauri migrate"
pnpm="pnpm update @tauri-apps/cli@next
pnpm tauri migrate"
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/start/migrate/from-tauri-2-beta.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The Tauri v2 CLI includes a `migrate` command that automates most of the process
<CommandTabs
npm="npm install @tauri-apps/cli@next
npm run tauri migrate"
yarn="yarn upgrade @tauri-apps/cli --next
yarn="yarn upgrade @tauri-apps/cli@next
yarn tauri migrate"
pnpm="pnpm update @tauri-apps/cli@next
pnpm tauri migrate"
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/zh-cn/start/migrate/from-tauri-1.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Tauri v2 的命令行工具包括一个 `migrate` 命令,可自动执行大部
<CommandTabs
npm="npm install @tauri-apps/cli@next
npm run tauri migrate"
yarn="yarn upgrade @tauri-apps/cli --next
yarn="yarn upgrade @tauri-apps/cli@next
yarn tauri migrate"
pnpm="pnpm update @tauri-apps/cli@next
pnpm tauri migrate"
Expand Down
Loading