ui-thing 0.0.28 → 0.0.30
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 +25 -0
- package/dist/index.js +213 -66
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/commands/add.ts +18 -11
- package/src/commands/init.ts +1 -0
- package/src/comps.ts +58 -0
- package/src/types.ts +1 -1
- package/src/utils/config.ts +17 -1
- package/src/utils/promptForComponents.ts +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.0.30
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.29...v0.0.30)
|
|
6
|
+
|
|
7
|
+
### 🚀 Enhancements
|
|
8
|
+
|
|
9
|
+
- **init-command:** Add --yes option to skip questions and just use defaults values ([a030aa0](https://github.com/BayBreezy/ui-thing-cli/commit/a030aa0))
|
|
10
|
+
- **add-command:** Add -a `all` option to the add command. This will add all components to the project and install the deps ([83868ab](https://github.com/BayBreezy/ui-thing-cli/commit/83868ab))
|
|
11
|
+
|
|
12
|
+
### ❤️ Contributors
|
|
13
|
+
|
|
14
|
+
- BayBreezy <behon.baker@yahoo.com>
|
|
15
|
+
|
|
16
|
+
## v0.0.29
|
|
17
|
+
|
|
18
|
+
[compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.28...v0.0.29)
|
|
19
|
+
|
|
20
|
+
### 🚀 Enhancements
|
|
21
|
+
|
|
22
|
+
- Add drawer component ([1c07ebd](https://github.com/BayBreezy/ui-thing-cli/commit/1c07ebd))
|
|
23
|
+
|
|
24
|
+
### ❤️ Contributors
|
|
25
|
+
|
|
26
|
+
- BayBreezy <behon.baker@yahoo.com>
|
|
27
|
+
|
|
3
28
|
## v0.0.28
|
|
4
29
|
|
|
5
30
|
[compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.27...v0.0.28)
|