create-rigg 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
- package/template/test/index.test.ts +3 -3
- package/template/vitest.config.ts +2 -2
package/README.md
CHANGED
|
@@ -12,8 +12,17 @@ I really like what [VoidZero](https://voidzero.dev) and [Vite+](https://github.c
|
|
|
12
12
|
## Create a new project with rigg
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
+
# pnpm
|
|
15
16
|
pnpm create rigg@latest
|
|
17
|
+
|
|
18
|
+
# npm
|
|
16
19
|
npm create rigg@latest
|
|
20
|
+
|
|
21
|
+
# bun
|
|
22
|
+
bun create rigg@latest
|
|
23
|
+
|
|
24
|
+
# yarn
|
|
25
|
+
yarn create rigg@latest
|
|
17
26
|
```
|
|
18
27
|
|
|
19
28
|
## What you get
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED