ui-thing 0.0.9 → 0.0.10
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/CHANGELOG.md +24 -0
- package/README.md +8 -0
- package/dist/index.js +522 -379
- package/dist/index.js.map +1 -1
- package/package.json +5 -3
- package/src/commands/init.ts +1 -1
- package/src/commands/shortcuts.ts +42 -0
- package/src/comp.ts +138 -138
- package/src/index.ts +2 -0
- package/src/templates/shortcuts.ts +217 -0
- package/src/utils/addShortcutFiles.ts +12 -0
- package/src/utils/constants.ts +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.0.10
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.9...v0.0.10)
|
|
6
|
+
|
|
7
|
+
### 🚀 Enhancements
|
|
8
|
+
|
|
9
|
+
- Add shortcut composables ([bd104e3](https://github.com/BayBreezy/ui-thing-cli/commit/bd104e3))
|
|
10
|
+
|
|
11
|
+
### 📖 Documentation
|
|
12
|
+
|
|
13
|
+
- Update readme ([991c842](https://github.com/BayBreezy/ui-thing-cli/commit/991c842))
|
|
14
|
+
|
|
15
|
+
### 📦 Build
|
|
16
|
+
|
|
17
|
+
- Run `npm pkg fix` to update package.json file ([5fb7e54](https://github.com/BayBreezy/ui-thing-cli/commit/5fb7e54))
|
|
18
|
+
|
|
19
|
+
### 🏡 Chore
|
|
20
|
+
|
|
21
|
+
- Update components ([5ae91c3](https://github.com/BayBreezy/ui-thing-cli/commit/5ae91c3))
|
|
22
|
+
|
|
23
|
+
### ❤️ Contributors
|
|
24
|
+
|
|
25
|
+
- Behon Baker <behon.baker@yahoo.com>
|
|
26
|
+
|
|
3
27
|
## v0.0.9
|
|
4
28
|
|
|
5
29
|
[compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.8...v0.0.9)
|
package/README.md
CHANGED
|
@@ -67,3 +67,11 @@ npx ui-thing@latest prettier
|
|
|
67
67
|
```
|
|
68
68
|
|
|
69
69
|
This command will add the prettier configuration to your project.
|
|
70
|
+
|
|
71
|
+
### `shortcuts`
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
npx ui-thing@latest shortcuts
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
This command will add the `defineShortcuts` & `useShortcuts` composables to your project.
|