create-dokio 0.1.13 → 0.1.14
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 +26 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,6 +18,32 @@ Run from your **repos workspace folder** — the folder where all your hub repos
|
|
|
18
18
|
|
|
19
19
|
---
|
|
20
20
|
|
|
21
|
+
## Keeping up to date
|
|
22
|
+
|
|
23
|
+
`npx` caches packages locally, so `npx create-dokio` may run an old version even after an update is published.
|
|
24
|
+
|
|
25
|
+
**Always use `@latest` to get the newest version:**
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npx create-dokio@latest
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
**Check what version you're running:**
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
npx create-dokio@latest --version
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
**Check what version is available on npm:**
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
npm show create-dokio version
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
> If Jake tells you there's an update, just swap `npx create-dokio` → `npx create-dokio@latest` and you're on the new version immediately. No install step needed.
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
21
47
|
## Commands
|
|
22
48
|
|
|
23
49
|
### `create-dokio hub`
|