ui-thing 0.0.10 → 0.0.12
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 +34 -0
- package/dist/index.js +361 -278
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
- package/src/commands/add.ts +3 -2
- package/src/{comp.ts → comps.ts} +58 -38
- package/src/types.ts +1 -0
- package/src/utils/fetchComponents.ts +8 -0
- package/src/utils/promptForComponents.ts +8 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.0.12
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.11...v0.0.12)
|
|
6
|
+
|
|
7
|
+
### 🏡 Chore
|
|
8
|
+
|
|
9
|
+
- **add:** Revert to adding local components file. API call was too slow ([f77db79](https://github.com/BayBreezy/ui-thing-cli/commit/f77db79))
|
|
10
|
+
- Remove unused import ([be11d5d](https://github.com/BayBreezy/ui-thing-cli/commit/be11d5d))
|
|
11
|
+
|
|
12
|
+
### ❤️ Contributors
|
|
13
|
+
|
|
14
|
+
- Behon Baker <behon.baker@yahoo.com>
|
|
15
|
+
|
|
16
|
+
## v0.0.11
|
|
17
|
+
|
|
18
|
+
[compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.10...v0.0.11)
|
|
19
|
+
|
|
20
|
+
### 🚀 Enhancements
|
|
21
|
+
|
|
22
|
+
- **add:** Update add command to get components from API ([6c41848](https://github.com/BayBreezy/ui-thing-cli/commit/6c41848))
|
|
23
|
+
|
|
24
|
+
### 💅 Refactors
|
|
25
|
+
|
|
26
|
+
- **types:** Update types ([75917fb](https://github.com/BayBreezy/ui-thing-cli/commit/75917fb))
|
|
27
|
+
|
|
28
|
+
### 🏡 Chore
|
|
29
|
+
|
|
30
|
+
- **dependencies:** Update deps ([7ce3c2a](https://github.com/BayBreezy/ui-thing-cli/commit/7ce3c2a))
|
|
31
|
+
- **components:** Remove hard coded components ([2802d49](https://github.com/BayBreezy/ui-thing-cli/commit/2802d49))
|
|
32
|
+
|
|
33
|
+
### ❤️ Contributors
|
|
34
|
+
|
|
35
|
+
- Behon Baker <behon.baker@yahoo.com>
|
|
36
|
+
|
|
3
37
|
## v0.0.10
|
|
4
38
|
|
|
5
39
|
[compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.9...v0.0.10)
|