Skip to content

Commit e2ee0f9

Browse files
committed
Minor fixes
1 parent 9687ac7 commit e2ee0f9

File tree

5 files changed

+62
-12
lines changed

5 files changed

+62
-12
lines changed

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"tailwindCSS.experimental.configFile": "apps/docs/tailwind.config.ts",
3+
"tailwindCSS.root": "apps/docs",
4+
"tailwindCSS.emmetCompletions": true
5+
}

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# unuı — UnHQ UI Monorepo
22

3+
[![CI](https://github.com/un-hq/unui/actions/workflows/ci.yml/badge.svg)]()
4+
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
5+
[![pnpm](https://img.shields.io/badge/pm-pnpm-orange.svg)](https://pnpm.io)
6+
37
A lightweight, token‑driven React + Tailwind component system.
48

59
## Packages

apps/docs/package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,19 @@
99
},
1010
"devDependencies": {
1111
"@ladle/react": "^4.0.0",
12+
"@tailwindcss/postcss": "^4.0.0",
13+
"autoprefixer": "^10.4.21",
14+
"postcss": "^8.5.6",
1215
"react": "^18.3.1",
1316
"react-dom": "^18.3.1",
14-
"typescript": "^5.9.2",
15-
"tailwindcss": "^4.0.0",
16-
"@tailwindcss/postcss": "^4.0.0",
17-
"postcss": "^8.4.47"
17+
"tailwindcss": "^4.1.13",
18+
"typescript": "^5.9.2"
1819
},
1920
"dependencies": {
20-
"@unhq/ui": "workspace:*",
21-
"@unhq/tokens": "workspace:*",
22-
"@unhq/tailwind-preset": "workspace:*",
2321
"@unhq/blocks": "workspace:*",
22+
"@unhq/tailwind-preset": "workspace:*",
23+
"@unhq/tokens": "workspace:*",
24+
"@unhq/ui": "workspace:*",
2425
"react": "18.x",
2526
"react-dom": "18.x"
2627
}

pnpm-lock.yaml

Lines changed: 38 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

turbo.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
{
22
"$schema": "https://turbo.build/schema.json",
33
"tasks": {
4-
"build": { "outputs": ["dist/**", "build/**"] },
5-
"typecheck": {},
6-
"lint": {}
4+
"build": {
5+
"outputs": ["dist/**"]
6+
},
7+
"typecheck": {
8+
"dependsOn": ["^build"],
9+
"outputs": []
10+
}
711
}
812
}

0 commit comments

Comments
 (0)