Skip to content

Commit

Permalink
fix: replace all incorrect versions
Browse files Browse the repository at this point in the history
goes through the repo and replaces all incorrect versions of create t3-app with  create-t3-app
This closes 1620
  • Loading branch information
ed-wright committed Oct 24, 2023
1 parent 4e3e458 commit 4d5cb5a
Show file tree
Hide file tree
Showing 15 changed files with 52 additions and 52 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/prerelease-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
A new create-t3-app prerelease is available for testing. You can install this latest build in your project with:
```sh
pnpm create t3-app@${{ env.BETA_PACKAGE_VERSION }}
pnpm create-t3-app@${{ env.BETA_PACKAGE_VERSION }}
```
- name: "Remove the autorelease label once published"
Expand Down
10 changes: 5 additions & 5 deletions cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</p>

<p align="center">
Get started with the <a rel="noopener noreferrer" target="_blank" href="https://init.tips">T3 Stack</a> by running <code>npm create t3-app@latest</code>
Get started with the <a rel="noopener noreferrer" target="_blank" href="https://init.tips">T3 Stack</a> by running <code>npm create-t3-app@latest</code>
</p>

<div align="center">
Expand Down Expand Up @@ -84,25 +84,25 @@ To scaffold an app using `create-t3-app`, run any of the following four commands
### npm

```bash
npm create t3-app@latest
npm create-t3-app@latest
```

### yarn

```bash
yarn create t3-app
yarn create-t3-app
```

### pnpm

```bash
pnpm create t3-app@latest
pnpm create-t3-app@latest
```

### bun

```bash
bun create t3-app@latest
bun create-t3-app@latest
```

For more advanced usage, check out the [CLI docs](https://create.t3.gg/en/installation).
Expand Down
8 changes: 4 additions & 4 deletions www/src/components/landingPage/ClipboardSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ import { Fragment, useState } from "react";

const commands = [
{
command: "create t3-app@latest",
command: "create-t3-app@latest",
manager: "npm",
},
{
command: "create t3-app",
command: "create-t3-app",
manager: "yarn",
},
{
command: "create t3-app@latest",
command: "create-t3-app@latest",
manager: "pnpm",
},
{
command: "create t3-app@latest",
command: "create-t3-app@latest",
manager: "bun",
},
];
Expand Down
2 changes: 1 addition & 1 deletion www/src/components/landingPage/banner.astro
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ import ClipboardSelect from "./ClipboardSelect";
<div
class="relative flex items-center rounded-lg border border-t3-purple-200/20 bg-t3-purple-100/10 px-2 py-2 text-sm md:px-3 md:py-3 md:text-lg lg:px-5 lg:py-4 lg:text-xl"
>
<code class="mr-12">npx create t3-app@latest</code>
<code class="mr-12">npx create-t3-app@latest</code>
<ClipboardSelect client:load />
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion www/src/components/landingPage/cli.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default function CodeCard() {
<div className="ml-2 h-3 w-3 rounded-full bg-green-500"></div>
</div>
<Typist cursor={{ hideWhenDone: true, hideWhenDoneDelay: 0 }}>
npm create t3-app@latest
npm create-t3-app@latest
<Typist.Delay ms={1250} />
</Typist>
<Typist
Expand Down
8 changes: 4 additions & 4 deletions www/src/pages/ar/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,25 @@ import Callout from "../../components/docs/callout.tsx";
### npm

```bash
npm create t3-app@latest
npm create-t3-app@latest
```

### yarn

```bash
yarn create t3-app
yarn create-t3-app
```

### pnpm

```bash
pnpm create t3-app@latest
pnpm create-t3-app@latest
```

### bun

```bash
bun create t3-app@latest
bun create-t3-app@latest
```

بعد أن تَنتهي عَملية إنشاء التطبيق، اَلق نَظرة عَلي [الخطوات الأولى](/ar/usage/first-steps) للبدء في تطبيقك الجديد.
Expand Down
8 changes: 4 additions & 4 deletions www/src/pages/en/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@ To scaffold an app using `create-t3-app`, run any of the following three command
### npm

```bash
npm create t3-app@latest
npm create-t3-app@latest
```

### yarn

```bash
yarn create t3-app
yarn create-t3-app
```

### pnpm

```bash
pnpm create t3-app@latest
pnpm create-t3-app@latest
```

### bun

```bash
bun create t3-app@latest
bun create-t3-app@latest
```

After your app has been scaffolded, check out the [first steps](/en/usage/first-steps) to get started on your new application.
Expand Down
8 changes: 4 additions & 4 deletions www/src/pages/es/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@ Para crear una aplicación usando `create-t3-app`, ejecuta cualquiera de los sig
### npm

```bash
npm create t3-app@latest
npm create-t3-app@latest
```

### yarn

```bash
yarn create t3-app
yarn create-t3-app
```

### pnpm

```bash
pnpm create t3-app@latest
pnpm create-t3-app@latest
```

### bun

```bash
bun create t3-app@latest
bun create-t3-app@latest
```

Después de que tu aplicación haya sido creada, consulta los [primeros pasos](/es/usage/first-steps) para comenzar con tu nueva aplicación.
Expand Down
8 changes: 4 additions & 4 deletions www/src/pages/fr/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@ Pour configurer une application à l'aide de `create-t3-app`, exécutez l'une de
### npm

```bash
npm create t3-app@latest
npm create-t3-app@latest
```

### yarn

```bash
yarn create t3-app
yarn create-t3-app
```

### pnpm

```bash
pnpm create t3-app@latest
pnpm create-t3-app@latest
```

### bun

```bash
bun create t3-app@latest
bun create-t3-app@latest
```

Une fois votre application configurée, consultez les [premières étapes](/fr/usage/first-steps) pour démarrer sur votre nouvelle application.
Expand Down
8 changes: 4 additions & 4 deletions www/src/pages/ja/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@ import Callout from "../../components/docs/callout.tsx";
### npm

```bash
npm create t3-app@latest
npm create-t3-app@latest
```

### yarn

```bash
yarn create t3-app
yarn create-t3-app
```

### pnpm

```bash
pnpm create t3-app@latest
pnpm create-t3-app@latest
```

### bun

```bash
bun create t3-app@latest
bun create-t3-app@latest
```

アプリケーションの初期構成が生成されたら、[ファーストステップ](/ja/usage/first-steps) をチェックして、新しいアプリケーションを開始しましょう。
Expand Down
8 changes: 4 additions & 4 deletions www/src/pages/no/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@ For å lage en app med `create-t3-app`, kjør en av følgende tre kommandoer og
### npm

```bash
npm create t3-app@latest
npm create-t3-app@latest
```

### yarn

```bash
yarn create t3-app
yarn create-t3-app
```

### pnpm

```bash
pnpm create t3-app@latest
pnpm create-t3-app@latest
```

### bun

```bash
bun create t3-app@latest
bun create-t3-app@latest
```

Etter at applikasjonen din har blitt opprettet, sjekk ut [første steg](/no/usage/first-steps) for å begynne å utvikle den nye applikasjonen.
Expand Down
8 changes: 4 additions & 4 deletions www/src/pages/pl/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@ Aby zacząć używać szablonu `create-t3-app`, uruchom którąkolwiek z poniżs
### npm

```bash
npm create t3-app@latest
npm create-t3-app@latest
```

### yarn

```bash
yarn create t3-app
yarn create-t3-app
```

### pnpm

```bash
pnpm create t3-app@latest
pnpm create-t3-app@latest
```

### bun

```bash
bun create t3-app@latest
bun create-t3-app@latest
```

Po tym, jak szablon aplikacji zostanie utworzony, sprawdź [pierwsze kroki](/pl/usage/first-steps) aby zacząć budować swoją nową aplikację.
Expand Down
8 changes: 4 additions & 4 deletions www/src/pages/pt/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@ Para estruturar uma aplicação usando `create-t3-app`, rode qualquer um dos com
### npm

```bash
npm create t3-app@latest
npm create-t3-app@latest
```

### yarn

```bash
yarn create t3-app
yarn create-t3-app
```

### pnpm

```bash
pnpm create t3-app@latest
pnpm create-t3-app@latest
```

### bun

```bash
bun create t3-app@latest
bun create-t3-app@latest
```

Após sua aplicação ter sido estruturada, verifique os [Primeiros Passos](/pt/usage/first-steps) para começar a usar sua nova aplicação.
Expand Down
8 changes: 4 additions & 4 deletions www/src/pages/ru/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@ import Callout from "../../components/docs/callout.tsx";
### npm

```bash
npm create t3-app@latest
npm create-t3-app@latest
```

### yarn

```bash
yarn create t3-app
yarn create-t3-app
```

### pnpm

```bash
pnpm create t3-app@latest
pnpm create-t3-app@latest
```

### bun

```bash
bun create t3-app@latest
bun create-t3-app@latest
```

После того, как приложение будет создано, ознакомьтесь с [первыми шагами](/ru/usage/first-steps), чтобы начать работу над вашим новым приложением.
Expand Down
8 changes: 4 additions & 4 deletions www/src/pages/zh-hans/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@ import Callout from "../../components/docs/callout.tsx";
### npm

```bash
npm create t3-app@latest
npm create-t3-app@latest
```

### yarn

```bash
yarn create t3-app
yarn create-t3-app
```

### pnpm

```bash
pnpm create t3-app@latest
pnpm create-t3-app@latest
```

### bun

```bash
bun create t3-app@latest
bun create-t3-app@latest
```

在你的应用程序被创建后,请查看 [第一步](/zh-hans/usage/first-steps) 以开始你的新应用。
Expand Down

0 comments on commit 4d5cb5a

Please sign in to comment.