Skip to content

Commit 310cd94

Browse files
committed
update docs tag + fix cli import path
1 parent fe6027d commit 310cd94

File tree

9 files changed

+9
-17
lines changed

9 files changed

+9
-17
lines changed

apps/website/docs/guide/05-official-plugins/01-commandkit-ai.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ language models.
4141
Install the plugin and your preferred AI SDK:
4242

4343
```bash npm2yarn
44-
npm install @commandkit/ai
44+
npm install @commandkit/ai@next
4545
```
4646

4747
You also need to install the AI SDK for the model you want to use. For

apps/website/docs/guide/05-official-plugins/02-commandkit-analytics.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ data itself.
1313
Install the analytics package to get started:
1414

1515
```bash npm2yarn
16-
npm install @commandkit/analytics
16+
npm install @commandkit/analytics@next
1717
```
1818

1919
## How it works

apps/website/docs/guide/05-official-plugins/03-commandkit-cache.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ improving response times and reducing external service usage.
1313
Install the cache package to get started:
1414

1515
```bash npm2yarn
16-
npm install @commandkit/cache
16+
npm install @commandkit/cache@next
1717
```
1818

1919
## Setup

apps/website/docs/guide/05-official-plugins/04-commandkit-devtools.mdx

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,9 @@ only. Features and APIs may change in future releases.
3333
Install the devtools plugin using your preferred package manager:
3434

3535
```sh npm2yarn
36-
npm install @commandkit/devtools@dev
36+
npm install @commandkit/devtools@next
3737
```
3838

39-
:::info
40-
41-
Currently, the devtools plugin is only available as a development
42-
version. Use the `@dev` tag when installing to get the latest
43-
development build.
44-
45-
:::
46-
4739
## Setup
4840

4941
Add the devtools plugin to your CommandKit configuration:

apps/website/docs/guide/05-official-plugins/05-commandkit-i18n.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ interactions.
2828
## Installation
2929

3030
```sh npm2yarn
31-
npm install @commandkit/i18n
31+
npm install @commandkit/i18n@next
3232
```
3333

3434
## Basic setup

apps/website/docs/guide/05-official-plugins/06-commandkit-legacy.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ major changes to your existing code.
2121
## Installation
2222

2323
```sh npm2yarn
24-
npm install @commandkit/legacy
24+
npm install @commandkit/legacy@next
2525
```
2626

2727
## Usage

apps/website/docs/guide/05-official-plugins/07-commandkit-redis.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ box with the [`@commandkit/cache`](./03-commandkit-cache.mdx) plugin.
99
## Installation
1010

1111
```sh npm2yarn
12-
npm install @commandkit/redis
12+
npm install @commandkit/redis@next
1313
```
1414

1515
## Usage

apps/website/docs/guide/05-official-plugins/08-commandkit-tasks.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cleanup, the tasks plugin has you covered.
1010
## Installation
1111

1212
```bash
13-
npm install @commandkit/tasks
13+
npm install @commandkit/tasks@next
1414
```
1515

1616
## Basic setup

packages/create-commandkit/src/functions/installDeps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { type IOType, execSync } from 'node:child_process';
22
import ora from 'ora';
33

44
import type { Language, PackageManager } from '../types';
5-
import { getCommandKitVersion } from '../utils';
5+
import { getCommandKitVersion } from '../utils.js';
66

77
const getBaseDependencies = () => [
88
`commandkit${getCommandKitVersion()}`,

0 commit comments

Comments
 (0)