@turtleclub/ui 0.0.6 → 0.1.0-beta.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.
@@ -1,15 +1,20 @@
1
-
2
- $ rm -rf dist && rm -rf types && bun run build:code && bun run build:css
3
- $ vite build
4
- vite v5.4.19 building for production...
5
- transforming (1) src/index.tstransforming (7) src/components/molecules/tx-status.tsxsrc/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
- ✓ 30 modules transformed.
8
- rendering chunks (1)...computing gzip size (0)...computing gzip size (1)...dist/index.js 56.61 kB │ gzip: 11.67 kB │ map: 112.92 kB
9
- rendering chunks (1)...computing gzip size (1)...dist/index.cjs 39.14 kB │ gzip: 9.87 kB │ map: 106.09 kB
10
- ✓ built in 374ms
11
- $ BUILD_CSS=true vite build
12
- vite v5.4.19 building for production...
13
- transforming (1) src/styles/globals.css✓ 1 modules transformed.
14
- rendering chunks (1)...computing gzip size (0)...computing gzip size (1)...dist/styles.css 46.28 kB │ gzip: 8.64 kB
15
- ✓ built in 136ms
1
+ $ rm -rf dist && rm -rf types && bun run build:code && bun run build:css
2
+ $ vite build
3
+ vite v5.4.19 building for production...
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
+ ✓ 30 modules transformed.
8
+ rendering chunks...
9
+ computing gzip size...
10
+ dist/index.js 56.61 kB │ gzip: 11.67 kB │ map: 112.92 kB
11
+ dist/index.cjs 39.14 kB │ gzip: 9.87 kB │ map: 106.09 kB
12
+ ✓ built in 205ms
13
+ $ BUILD_CSS=true vite build
14
+ vite v5.4.19 building for production...
15
+ transforming...
16
+ ✓ 1 modules transformed.
17
+ rendering chunks...
18
+ computing gzip size...
19
+ dist/styles.css 46.28 kB │ gzip: 8.64 kB
20
+ ✓ built in 130ms
package/CHANGELOG.md CHANGED
@@ -1,7 +1,10 @@
1
- # @turtleclub/ui
1
+ # Change Log
2
2
 
3
- ## 0.0.6
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
4
5
 
5
- ### Patch Changes
6
+ # [0.1.0-beta.0](https://github.com/turtledev/packages/compare/@turtleclub/ui@0.0.6...@turtleclub/ui@0.1.0-beta.0) (2025-07-11)
6
7
 
7
- - 10/jul update!
8
+ ### Features
9
+
10
+ - :rocket: adding lerna support and get rid of changeset ([7bf1f87](https://github.com/turtledev/packages/commit/7bf1f87faa62900701feb81e534bfab09303ff58))
package/package.json CHANGED
@@ -1,66 +1,67 @@
1
1
  {
2
- "name": "@turtleclub/ui",
3
- "version": "0.0.6",
4
- "description": "shadcn/ui and custom Turtle UI components library",
5
- "license": "MIT",
6
- "repository": {
7
- "type": "git",
8
- "url": "https://github.com/turtledev/packages.git",
9
- "directory": "packages/ui"
10
- },
11
- "sideEffects": [
12
- "*.css"
13
- ],
14
- "type": "module",
15
- "exports": {
16
- ".": {
17
- "import": "./dist/index.js",
18
- "require": "./dist/index.cjs"
19
- },
20
- "./styles.css": "./dist/styles.css",
21
- "./src/styles/globals.css": "./src/styles/globals.css"
22
- },
23
- "main": "./dist/index.cjs",
24
- "module": "./dist/index.js",
25
- "scripts": {
26
- "build": "rm -rf dist && rm -rf types && bun run build:code && bun run build:css",
27
- "build:code": "vite build",
28
- "build:css": "BUILD_CSS=true vite build",
29
- "build:types": "tsc -p . || true",
30
- "type-check": "tsc --noEmit || true",
31
- "dev": "vite build --watch"
32
- },
33
- "dependencies": {
34
- "@radix-ui/react-label": "^2.1.7",
35
- "@radix-ui/react-scroll-area": "^1.2.9",
36
- "@radix-ui/react-select": "^2.2.5",
37
- "@radix-ui/react-separator": "^1.1.7",
38
- "@radix-ui/react-slot": "^1.2.3",
39
- "@radix-ui/react-switch": "^1.2.5",
40
- "@radix-ui/react-toggle": "^1.1.9",
41
- "@radix-ui/react-toggle-group": "^1.1.10",
42
- "@radix-ui/react-tooltip": "^1.2.7",
43
- "class-variance-authority": "^0.7.1",
44
- "clsx": "^2.1.1",
45
- "lucide-react": "^0.523.0",
46
- "next-themes": "^0.4.6",
47
- "sonner": "^2.0.5",
48
- "tailwind-merge": "^3.3.1"
49
- },
50
- "peerDependencies": {
51
- "react": ">=18.0.0",
52
- "react-dom": ">=18.0.0",
53
- "tailwindcss": "4.1.10",
54
- "tw-animate-css": "^1.3.4"
55
- },
56
- "devDependencies": {
57
- "@tailwindcss/vite": "^4.1.11",
58
- "@types/react": "^18.0.0",
59
- "@types/react-dom": "^18.0.0",
60
- "typescript": "^5.0.0",
61
- "vite": "^5.0.0"
62
- },
63
- "publishConfig": {
64
- "access": "public"
65
- }
66
- }
2
+ "name": "@turtleclub/ui",
3
+ "version": "0.1.0-beta.0",
4
+ "description": "shadcn/ui and custom Turtle UI components library",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/turtledev/packages.git",
9
+ "directory": "packages/ui"
10
+ },
11
+ "sideEffects": [
12
+ "*.css"
13
+ ],
14
+ "type": "module",
15
+ "exports": {
16
+ ".": {
17
+ "import": "./dist/index.js",
18
+ "require": "./dist/index.cjs"
19
+ },
20
+ "./styles.css": "./dist/styles.css",
21
+ "./src/styles/globals.css": "./src/styles/globals.css"
22
+ },
23
+ "main": "./dist/index.cjs",
24
+ "module": "./dist/index.js",
25
+ "scripts": {
26
+ "build": "rm -rf dist && rm -rf types && bun run build:code && bun run build:css",
27
+ "build:code": "vite build",
28
+ "build:css": "BUILD_CSS=true vite build",
29
+ "build:types": "tsc -p . || true",
30
+ "type-check": "tsc --noEmit || true",
31
+ "dev": "vite build --watch"
32
+ },
33
+ "dependencies": {
34
+ "@radix-ui/react-label": "^2.1.7",
35
+ "@radix-ui/react-scroll-area": "^1.2.9",
36
+ "@radix-ui/react-select": "^2.2.5",
37
+ "@radix-ui/react-separator": "^1.1.7",
38
+ "@radix-ui/react-slot": "^1.2.3",
39
+ "@radix-ui/react-switch": "^1.2.5",
40
+ "@radix-ui/react-toggle": "^1.1.9",
41
+ "@radix-ui/react-toggle-group": "^1.1.10",
42
+ "@radix-ui/react-tooltip": "^1.2.7",
43
+ "class-variance-authority": "^0.7.1",
44
+ "clsx": "^2.1.1",
45
+ "lucide-react": "^0.523.0",
46
+ "next-themes": "^0.4.6",
47
+ "sonner": "^2.0.5",
48
+ "tailwind-merge": "^3.3.1"
49
+ },
50
+ "peerDependencies": {
51
+ "react": ">=18.0.0",
52
+ "react-dom": ">=18.0.0",
53
+ "tailwindcss": "4.1.10",
54
+ "tw-animate-css": "^1.3.4"
55
+ },
56
+ "devDependencies": {
57
+ "@tailwindcss/vite": "^4.1.11",
58
+ "@types/react": "^18.0.0",
59
+ "@types/react-dom": "^18.0.0",
60
+ "typescript": "^5.0.0",
61
+ "vite": "^5.0.0"
62
+ },
63
+ "publishConfig": {
64
+ "access": "public"
65
+ },
66
+ "gitHead": "32e8c829af48f2dd8998e2552267ebace614cd63"
67
+ }