@turtleclub/ui 0.2.0-beta.4 → 0.2.0
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/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +4 -0
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -2,18 +2,18 @@ $ rm -rf dist && rm -rf types && bun run build:code && bun run build:css
|
|
|
2
2
|
$ vite build
|
|
3
3
|
[36mvite v5.4.19 [32mbuilding for production...[36m[39m
|
|
4
4
|
transforming...
|
|
5
|
-
src/components/ui/toggle.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
|
|
6
|
-
src/components/ui/toggle.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/toggle.tsx" was ignored.
|
|
7
|
-
src/components/ui/table.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
|
|
8
|
-
src/components/ui/table.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/table.tsx" was ignored.
|
|
9
5
|
src/components/molecules/token-selector.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
|
|
10
6
|
src/components/molecules/token-selector.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/molecules/token-selector.tsx" was ignored.
|
|
7
|
+
src/components/ui/table.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
|
|
8
|
+
src/components/ui/table.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/table.tsx" was ignored.
|
|
9
|
+
src/components/ui/toggle.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
|
|
10
|
+
src/components/ui/toggle.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/toggle.tsx" was ignored.
|
|
11
11
|
[32m✓[39m 32 modules transformed.
|
|
12
12
|
rendering chunks...
|
|
13
13
|
computing gzip size...
|
|
14
14
|
[2mdist/[22m[36mindex.js [39m[1m[2m63.51 kB[22m[1m[22m[2m │ gzip: 13.29 kB[22m[2m │ map: 128.94 kB[22m
|
|
15
15
|
[2mdist/[22m[36mindex.cjs [39m[1m[2m43.83 kB[22m[1m[22m[2m │ gzip: 11.20 kB[22m[2m │ map: 121.30 kB[22m
|
|
16
|
-
[32m✓ built in 2.
|
|
16
|
+
[32m✓ built in 2.44s[39m
|
|
17
17
|
$ BUILD_CSS=true vite build
|
|
18
18
|
[36mvite v5.4.19 [32mbuilding for production...[36m[39m
|
|
19
19
|
transforming...
|
|
@@ -21,4 +21,4 @@ transforming...
|
|
|
21
21
|
rendering chunks...
|
|
22
22
|
computing gzip size...
|
|
23
23
|
[2mdist/[22m[35mstyles.css [39m[1m[2m50.83 kB[22m[1m[22m[2m │ gzip: 9.22 kB[22m
|
|
24
|
-
[32m✓ built in 1.
|
|
24
|
+
[32m✓ built in 1.21s[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.2.0](https://github.com/turtledev/packages/compare/@turtleclub/ui@0.2.0-beta.4...@turtleclub/ui@0.2.0) (2025-08-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @turtleclub/ui
|
|
9
|
+
|
|
6
10
|
# [0.2.0-beta.4](https://github.com/turtledev/packages/compare/@turtleclub/ui@0.2.0-beta.3...@turtleclub/ui@0.2.0-beta.4) (2025-08-12)
|
|
7
11
|
|
|
8
12
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turtleclub/ui",
|
|
3
|
-
"version": "0.2.0
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "shadcn/ui and custom Turtle UI components library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"publishConfig": {
|
|
64
64
|
"access": "public"
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "ce8e7076dbab115ae2f2f99186f1fd4079e6d745"
|
|
67
67
|
}
|