Skip to content

Commit c18e129

Browse files
authored
feat: tailwind v4 (#1095)
* chore: duplicate new-york * chore: complete 'a' * chore: b, c * chore: more components * chore: more components * chore: complete all main components * feat: support v4 colors * feat: support cli v4 * test: include test fixtures * feat: nuxt app demo * feat: complete most of the demos * feat: all components * chore: bump vaul-vue version * chore: remove chart for now * feat: crawl v4 content, build registry, populate sidebar * chore: remove autoform * chore: build registry for v4 style * chore: add forms * chore: cleanup * chore: bump reka-ui * refactor: use tw-animate-css * fix: revert some styling because tw-animate has inbuild animation for radix vars * feat: theme selector * feat: update latest ui * fix: styling, deployment * docs: update installations * chore: build latest registry * chore: update to more recent changes * fix: update scripts * fix: remove utils as registryDependencies * chore: build v4 index.json, fix previous version deps * refactor: tanstack table utils move to table * fix: overwrite not working * chore: fix ts warninfg * feat: update blocks * chore: change path * chore: build registry * chore: cleanup * docs: fix path changes * docs: announcement * docs: hide extended
1 parent 3ec335b commit c18e129

File tree

1,845 files changed

+45783
-3989
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,845 files changed

+45783
-3989
lines changed

apps/v4/.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Nuxt dev/build outputs
2+
.output
3+
.data
4+
.nuxt
5+
.nitro
6+
.cache
7+
dist
8+
9+
# Node dependencies
10+
node_modules
11+
12+
# Logs
13+
logs
14+
*.log
15+
16+
# Misc
17+
.DS_Store
18+
.fleet
19+
.idea
20+
21+
# Local env files
22+
.env
23+
.env.*
24+
!.env.example

apps/v4/README.md

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# Nuxt Minimal Starter
2+
3+
Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
4+
5+
## Setup
6+
7+
Make sure to install dependencies:
8+
9+
```bash
10+
# npm
11+
npm install
12+
13+
# pnpm
14+
pnpm install
15+
16+
# yarn
17+
yarn install
18+
19+
# bun
20+
bun install
21+
```
22+
23+
## Development Server
24+
25+
Start the development server on `http://localhost:3000`:
26+
27+
```bash
28+
# npm
29+
npm run dev
30+
31+
# pnpm
32+
pnpm dev
33+
34+
# yarn
35+
yarn dev
36+
37+
# bun
38+
bun run dev
39+
```
40+
41+
## Production
42+
43+
Build the application for production:
44+
45+
```bash
46+
# npm
47+
npm run build
48+
49+
# pnpm
50+
pnpm build
51+
52+
# yarn
53+
yarn build
54+
55+
# bun
56+
bun run build
57+
```
58+
59+
Locally preview production build:
60+
61+
```bash
62+
# npm
63+
npm run preview
64+
65+
# pnpm
66+
pnpm preview
67+
68+
# yarn
69+
yarn preview
70+
71+
# bun
72+
bun run preview
73+
```
74+
75+
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.

0 commit comments

Comments
 (0)