Skip to content

Commit 93ae8bd

Browse files
authored
chore: deprecate next-template (#5478)
* chore: deprecate next-template * chore: tests
1 parent 3259fb7 commit 93ae8bd

35 files changed

+11
-790
lines changed

packages/shadcn/test/utils/schema/__snapshots__/registry-resolve-items-tree.test.ts.snap

+9-8
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export function cn(...inputs: ClassValue[]) {
2828
}
2929
",
3030
"path": "lib/utils.ts",
31+
"target": "lib/utils.ts",
3132
"type": "registry:lib",
3233
},
3334
{
@@ -59,7 +60,7 @@ Label.displayName = LabelPrimitive.Root.displayName
5960
export { Label }
6061
",
6162
"path": "ui/label.tsx",
62-
"target": "",
63+
"target": "components/ui/label.tsx",
6364
"type": "registry:ui",
6465
},
6566
],
@@ -100,7 +101,7 @@ import { cva, type VariantProps } from "class-variance-authority"
100101
import { cn } from "@/lib/utils"
101102
102103
const buttonVariants = cva(
103-
"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
104+
"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
104105
{
105106
variants: {
106107
variant: {
@@ -152,7 +153,7 @@ Button.displayName = "Button"
152153
export { Button, buttonVariants }
153154
",
154155
"path": "ui/button.tsx",
155-
"target": "",
156+
"target": "components/ui/button.tsx",
156157
"type": "registry:ui",
157158
},
158159
],
@@ -230,7 +231,7 @@ Button.displayName = "Button"
230231
export { Button, buttonVariants }
231232
",
232233
"path": "ui/button.tsx",
233-
"target": "",
234+
"target": "components/ui/button.tsx",
234235
"type": "registry:ui",
235236
},
236237
{
@@ -261,7 +262,7 @@ Input.displayName = "Input"
261262
export { Input }
262263
",
263264
"path": "ui/input.tsx",
264-
"target": "",
265+
"target": "components/ui/input.tsx",
265266
"type": "registry:ui",
266267
},
267268
{
@@ -273,7 +274,7 @@ import { Command as CommandPrimitive } from "cmdk"
273274
import { Search } from "lucide-react"
274275
275276
import { cn } from "@/lib/utils"
276-
import { Dialog, DialogContent } from "@/registry/default/ui/dialog"
277+
import { Dialog, DialogContent } from "@/components/ui/dialog"
277278
278279
const Command = React.forwardRef<
279280
React.ElementRef<typeof CommandPrimitive>,
@@ -422,7 +423,7 @@ export {
422423
}
423424
",
424425
"path": "ui/command.tsx",
425-
"target": "",
426+
"target": "components/ui/command.tsx",
426427
"type": "registry:ui",
427428
},
428429
{
@@ -550,7 +551,7 @@ export {
550551
}
551552
",
552553
"path": "ui/dialog.tsx",
553-
"target": "",
554+
"target": "components/ui/dialog.tsx",
554555
"type": "registry:ui",
555556
},
556557
],

templates/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
> [!NOTE]
2+
> The `next-template` has been deprecated. Use `npx shadcn@latest init` to create a new project.

templates/next-template/.editorconfig

-10
This file was deleted.

templates/next-template/.eslintignore

-5
This file was deleted.

templates/next-template/.eslintrc.json

-30
This file was deleted.

templates/next-template/.gitignore

-36
This file was deleted.

templates/next-template/.prettierignore

-12
This file was deleted.

templates/next-template/.vscode/settings.json

-4
This file was deleted.

templates/next-template/README.md

-22
This file was deleted.

templates/next-template/app/layout.tsx

-54
This file was deleted.

templates/next-template/app/page.tsx

-39
This file was deleted.

templates/next-template/components.json

-15
This file was deleted.

templates/next-template/components/icons.tsx

-35
This file was deleted.

templates/next-template/components/main-nav.tsx

-41
This file was deleted.

0 commit comments

Comments
 (0)