@turtleclub/ui 0.1.0 → 0.1.1
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 +20 -15
- package/CHANGELOG.md +8 -0
- package/README.md +1 -1
- package/package.json +2 -2
- package/src/index.ts +1 -0
- package/.turbo/turbo-type-check.log +0 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,15 +1,20 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
[
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
[
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
[
|
|
11
|
-
[
|
|
12
|
-
[
|
|
13
|
-
|
|
14
|
-
[
|
|
15
|
-
|
|
1
|
+
$ rm -rf dist && rm -rf types && bun run build:code && bun run build:css
|
|
2
|
+
$ vite build
|
|
3
|
+
[36mvite v5.4.19 [32mbuilding for production...[36m[39m
|
|
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
|
+
[32m✓[39m 31 modules transformed.
|
|
8
|
+
rendering chunks...
|
|
9
|
+
computing gzip size...
|
|
10
|
+
[2mdist/[22m[36mindex.js [39m[1m[2m57.45 kB[22m[1m[22m[2m │ gzip: 12.00 kB[22m[2m │ map: 115.78 kB[22m
|
|
11
|
+
[2mdist/[22m[36mindex.cjs [39m[1m[2m39.80 kB[22m[1m[22m[2m │ gzip: 10.19 kB[22m[2m │ map: 108.91 kB[22m
|
|
12
|
+
[32m✓ built in 2.29s[39m
|
|
13
|
+
$ BUILD_CSS=true vite build
|
|
14
|
+
[36mvite v5.4.19 [32mbuilding for production...[36m[39m
|
|
15
|
+
transforming...
|
|
16
|
+
[32m✓[39m 1 modules transformed.
|
|
17
|
+
rendering chunks...
|
|
18
|
+
computing gzip size...
|
|
19
|
+
[2mdist/[22m[35mstyles.css [39m[1m[2m46.31 kB[22m[1m[22m[2m │ gzip: 8.65 kB[22m
|
|
20
|
+
[32m✓ built in 958ms[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.1.1](https://github.com/turtledev/packages/compare/@turtleclub/ui@0.1.1-beta.0...@turtleclub/ui@0.1.1) (2025-07-16)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @turtleclub/ui
|
|
9
|
+
|
|
10
|
+
## [0.1.1-beta.0](https://github.com/turtledev/packages/compare/@turtleclub/ui@0.1.0...@turtleclub/ui@0.1.1-beta.0) (2025-07-16)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @turtleclub/ui
|
|
13
|
+
|
|
6
14
|
# [0.1.0](https://github.com/turtledev/packages/compare/@turtleclub/ui@0.1.0-beta.1...@turtleclub/ui@0.1.0) (2025-07-16)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @turtleclub/ui
|
package/README.md
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
# @turtledev/ui
|
|
2
2
|
|
|
3
|
-
A modern, accessible UI component library built with React, Radix UI primitives, and TailwindCSS. This package provides a comprehensive set of reusable components following the shadcn/ui design system.
|
|
3
|
+
A modern, accessible UI component library built with React, Radix UI primitives, and TailwindCSS. This package provides a comprehensive set of reusable components following the shadcn/ui design system.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turtleclub/ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
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": "70dd6f0128bae6031c840efc31fde41bf3332a4c"
|
|
67
67
|
}
|
package/src/index.ts
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
$ tsc --noEmit || true
|