ui-thing 0.2.8 → 0.2.9
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 +26 -0
- package/bun.lock +941 -0
- package/dist/index.js +12 -7
- package/dist/index.js.map +1 -1
- package/package.json +28 -27
- package/src/templates/css.ts +5 -0
- package/src/templates/vs-code.ts +0 -8
- package/src/utils/config.ts +2 -1
- package/tsup.config.ts +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.2.9
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.2.8...v0.2.9)
|
|
6
|
+
|
|
7
|
+
### 🚀 Enhancements
|
|
8
|
+
|
|
9
|
+
- Enhance CSS styles with color-scheme support and scrollbar utility ([d61751c](https://github.com/BayBreezy/ui-thing-cli/commit/d61751c))
|
|
10
|
+
- Add additional regex patterns for Tailwind CSS class detection in VS Code settings ([7a2793e](https://github.com/BayBreezy/ui-thing-cli/commit/7a2793e))
|
|
11
|
+
- Add dark mode support for select background color in CSS ([1f10c63](https://github.com/BayBreezy/ui-thing-cli/commit/1f10c63))
|
|
12
|
+
- Remove unnecessary VS Code extension and simplify regex patterns for Tailwind CSS ([b4651e3](https://github.com/BayBreezy/ui-thing-cli/commit/b4651e3))
|
|
13
|
+
|
|
14
|
+
### 🩹 Fixes
|
|
15
|
+
|
|
16
|
+
- Remove unnecessary eslint directive for uiConfig initialization ([af23eb3](https://github.com/BayBreezy/ui-thing-cli/commit/af23eb3))
|
|
17
|
+
- Update dts configuration to include compiler options for deprecation handling ([28b31da](https://github.com/BayBreezy/ui-thing-cli/commit/28b31da))
|
|
18
|
+
|
|
19
|
+
### 🏡 Chore
|
|
20
|
+
|
|
21
|
+
- Update dependencies and devDependencies in package.json ([af6d501](https://github.com/BayBreezy/ui-thing-cli/commit/af6d501))
|
|
22
|
+
- **release:** V0.2.8 ([980fa78](https://github.com/BayBreezy/ui-thing-cli/commit/980fa78))
|
|
23
|
+
- Update deps and switch over to bun for pm ([4d88abc](https://github.com/BayBreezy/ui-thing-cli/commit/4d88abc))
|
|
24
|
+
|
|
25
|
+
### ❤️ Contributors
|
|
26
|
+
|
|
27
|
+
- Behon Baker ([@BayBreezy](https://github.com/BayBreezy))
|
|
28
|
+
|
|
3
29
|
## v0.2.8
|
|
4
30
|
|
|
5
31
|
[compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.2.7...v0.2.8)
|