@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.
@@ -13,7 +13,7 @@ rendering chunks...
13
13
  computing gzip size...
14
14
  dist/index.js 61.29 kB │ gzip: 12.83 kB │ map: 127.73 kB
15
15
  dist/index.cjs 44.69 kB │ gzip: 11.13 kB │ map: 119.96 kB
16
- ✓ built in 2.67s
16
+ ✓ built in 2.59s
17
17
  $ BUILD_CSS=true vite build
18
18
  vite v5.4.19 building for production...
19
19
  transforming...
@@ -21,5 +21,5 @@ transforming...
21
21
  rendering chunks...
22
22
  computing gzip size...
23
23
  dist/styles.css 51.18 kB │ gzip: 9.28 kB
24
- ✓ built in 1.21s
24
+ ✓ built in 1.17s
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.4",
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": "./dist/index.js",
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": "04c3419f68fb3c2c41df8a20e5c28885fed6e031"
70
+ "gitHead": "768721186ae2eba4588884f6d090ccdb18623932"
68
71
  }