Skip to content

Commit f620b7b

Browse files
authored
unplugin-typia, npm instead of jsr (#1579)
* `unplugin-typia`, no jsr, but npm * `unplugin-typia`, npm instead of jsr
1 parent 12cc579 commit f620b7b

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

website/pages/docs/setup.mdx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -238,31 +238,30 @@ Currently, `unplugin-typia` supports the following bundlers:
238238
<Tabs items={['npm', 'pnpm', 'yarn', 'bun']}>
239239
<Tabs.Tab>
240240
```bash filename="Terminal" showLineNumbers copy
241-
npx jsr add -D @ryoppippi/unplugin-typia # via jsr (recommended)
242-
# npm install -D @ryoppippi/unplugin-typia # via npm
241+
npm install -D @ryoppippi/unplugin-typia
243242

244243
npm install --save typia
245244
npx typia setup
246245
```
247246
</Tabs.Tab>
248247
<Tabs.Tab>
249248
```bash filename="Terminal" showLineNumbers copy
250-
pnpm dlx jsr add -D @ryoppippi/unplugin-typia
249+
pnpm install -D @ryoppippi/unplugin-typia
251250
pnpm install typia
252251
pnpm typia setup --manager pnpm
253252
```
254253
</Tabs.Tab>
255254
<Tabs.Tab>
256255
```bash filename="Terminal" showLineNumbers copy
257256
# YARN BERRY IS NOT SUPPORTED
258-
yarn dlx jsr add -D @ryoppippi/unplugin-typia
257+
yarn add -D @ryoppippi/unplugin-typia
259258
yarn add typia
260259
yarn typia setup --manager yarn
261260
```
262261
</Tabs.Tab>
263262
<Tabs.Tab>
264263
```bash filename="Terminal" showLineNumbers copy
265-
bunx jsr add @ryoppippi/unplugin-typia
264+
bun add -D @ryoppippi/unplugin-typia
266265
bun add typia
267266
bun typia setup
268267
```

0 commit comments

Comments
 (0)