@turtleclub/ui 0.3.0-beta.4 → 0.3.0-beta.5
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 +2 -2
- package/CHANGELOG.md +4 -0
- package/package.json +7 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -13,7 +13,7 @@ rendering chunks...
|
|
|
13
13
|
computing gzip size...
|
|
14
14
|
[2mdist/[22m[36mindex.js [39m[1m[2m61.29 kB[22m[1m[22m[2m │ gzip: 12.83 kB[22m[2m │ map: 127.73 kB[22m
|
|
15
15
|
[2mdist/[22m[36mindex.cjs [39m[1m[2m44.69 kB[22m[1m[22m[2m │ gzip: 11.13 kB[22m[2m │ map: 119.96 kB[22m
|
|
16
|
-
[32m✓ built in 2.
|
|
16
|
+
[32m✓ built in 2.59s[39m
|
|
17
17
|
$ BUILD_CSS=true vite build
|
|
18
18
|
[36mvite v5.4.19 [32mbuilding for production...[36m[39m
|
|
19
19
|
transforming...
|
|
@@ -21,5 +21,5 @@ transforming...
|
|
|
21
21
|
rendering chunks...
|
|
22
22
|
computing gzip size...
|
|
23
23
|
[2mdist/[22m[35mstyles.css [39m[1m[2m51.18 kB[22m[1m[22m[2m │ gzip: 9.28 kB[22m
|
|
24
|
-
[32m✓ built in 1.
|
|
24
|
+
[32m✓ built in 1.17s[39m
|
|
25
25
|
$ tsc -p . || true
|
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.3.0-beta.5](https://github.com/turtledev/packages/compare/@turtleclub/ui@0.3.0-beta.4...@turtleclub/ui@0.3.0-beta.5) (2025-08-19)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @turtleclub/ui
|
|
9
|
+
|
|
6
10
|
# [0.3.0-beta.4](https://github.com/turtledev/packages/compare/@turtleclub/ui@0.3.0-beta.3...@turtleclub/ui@0.3.0-beta.4) (2025-08-19)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @turtleclub/ui
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turtleclub/ui",
|
|
3
|
-
"version": "0.3.0-beta.
|
|
3
|
+
"version": "0.3.0-beta.5",
|
|
4
4
|
"description": "shadcn/ui and custom Turtle UI components library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -14,14 +14,17 @@
|
|
|
14
14
|
"type": "module",
|
|
15
15
|
"exports": {
|
|
16
16
|
".": {
|
|
17
|
-
"import":
|
|
17
|
+
"import": {
|
|
18
|
+
"types": "./dist/types/index.d.ts",
|
|
19
|
+
"default": "./dist/index.js"
|
|
20
|
+
},
|
|
18
21
|
"require": "./dist/index.cjs"
|
|
19
22
|
},
|
|
20
23
|
"./styles.css": "./dist/styles.css",
|
|
21
24
|
"./src/styles/globals.css": "./src/styles/globals.css"
|
|
22
25
|
},
|
|
23
26
|
"main": "./dist/index.cjs",
|
|
24
|
-
"types": "./types/index.d.ts",
|
|
27
|
+
"types": "./dist/types/index.d.ts",
|
|
25
28
|
"module": "./dist/index.js",
|
|
26
29
|
"scripts": {
|
|
27
30
|
"build": "rm -rf dist && bun run build:code && bun run build:css && bun run build:types",
|
|
@@ -64,5 +67,5 @@
|
|
|
64
67
|
"publishConfig": {
|
|
65
68
|
"access": "public"
|
|
66
69
|
},
|
|
67
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "768721186ae2eba4588884f6d090ccdb18623932"
|
|
68
71
|
}
|