Skip to content

Commit

Permalink
chore: recommend using latest cli (#481)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfurlong authored Aug 30, 2024
1 parent e2906a7 commit 436046b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions docs/pages/cli/creating-a-project-from-template.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Creating a Project from a Template'
description: 'A guide to demonstrate how to create a project from a template with Frames.js'
title: "Creating a Project from a Template"
description: "A guide to demonstrate how to create a project from a template with Frames.js"
---

# Creating a Project from a Template
Expand All @@ -14,15 +14,15 @@ To create a new project from a template interactively, run the following command
:::code-group

```bash [npm]
npm init frames
npm init frames@latest
```

```bash [yarn]
yarn create frames
yarn create frames@latest
```

```bash [pnpm]
pnpm create frames
pnpm create frames@latest
```

:::
Expand All @@ -47,4 +47,4 @@ yarn create frames --name my-frames-app --template next
pnpm create frames --name my-frames-app --template next
```

:::
:::
6 changes: 3 additions & 3 deletions docs/pages/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ Run one of the commands below based on your preferred package manager and then f
:::code-group

```bash [npm]
npm init frames
npm init frames@latest
```

```bash [yarn]
yarn create frames
yarn create frames@latest
```

```bash [pnpm]
pnpm create frames
pnpm create frames@latest
```

:::
Expand Down
6 changes: 3 additions & 3 deletions packages/create-frames/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ Create a new Frames.js app with a single command using predefined templates.
### Using npm

```sh
npm init frames
npm init frames@latest
```

### Using yarn

```sh
yarn create frames
yarn create frames@latest
```

### Using pnpm

```sh
pnpm create frames
pnpm create frames@latest
```

## Installing globally (optional) and running from terminal
Expand Down

0 comments on commit 436046b

Please sign in to comment.