@pauldvlp/vp-react-ts-shadcn 0.3.1 → 0.3.2
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.
- package/README.md +6 -2
- package/dist/index.js +9 -1
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/pauldvlp/vp-templates/main/assets/cover.webp" alt="@pauldvlp/vp-templates" width="100%" />
|
|
3
|
+
</p>
|
|
4
|
+
|
|
1
5
|
# @pauldvlp/vp-react-ts-shadcn
|
|
2
6
|
|
|
3
7
|
A [Vite+](https://viteplus.dev) **monorepo generator** that scaffolds a minimal front-end workspace:
|
|
@@ -15,10 +19,10 @@ Published under the [`@pauldvlp/create`](../create) manifest:
|
|
|
15
19
|
|
|
16
20
|
```bash
|
|
17
21
|
# Interactive (prompts for anything you don't pass)
|
|
18
|
-
vp create @pauldvlp:react-ts-shadcn
|
|
22
|
+
vp create @pauldvlp:vp-react-ts-shadcn
|
|
19
23
|
|
|
20
24
|
# Non-interactive, fully specified
|
|
21
|
-
vp create @pauldvlp:react-ts-shadcn -- \
|
|
25
|
+
vp create @pauldvlp:vp-react-ts-shadcn -- \
|
|
22
26
|
--name my-app --scope @acme --base base --preset vega --iconLibrary lucide --components button,card,dialog
|
|
23
27
|
```
|
|
24
28
|
|
package/dist/index.js
CHANGED
|
@@ -13,8 +13,16 @@ import { z } from "zod";
|
|
|
13
13
|
// package.json
|
|
14
14
|
var package_default = {
|
|
15
15
|
name: "@pauldvlp/vp-react-ts-shadcn",
|
|
16
|
-
version: "0.3.
|
|
16
|
+
version: "0.3.2",
|
|
17
17
|
description: "Vite+ monorepo template: one frontend app (website) + a shared shadcn UI package, themeable via shadcn presets.",
|
|
18
|
+
author: "pauldvlp (https://github.com/pauldvlp/vp-templates)",
|
|
19
|
+
homepage: "https://github.com/pauldvlp/vp-templates",
|
|
20
|
+
repository: {
|
|
21
|
+
type: "git",
|
|
22
|
+
url: "git+https://github.com/pauldvlp/vp-templates.git",
|
|
23
|
+
directory: "packages/vp-react-ts-shadcn"
|
|
24
|
+
},
|
|
25
|
+
bugs: "https://github.com/pauldvlp/vp-templates/issues",
|
|
18
26
|
keywords: [
|
|
19
27
|
"vite-plus-generator",
|
|
20
28
|
"vite-plus",
|
package/package.json
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pauldvlp/vp-react-ts-shadcn",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Vite+ monorepo template: one frontend app (website) + a shared shadcn UI package, themeable via shadcn presets.",
|
|
5
|
+
"author": "pauldvlp (https://github.com/pauldvlp/vp-templates)",
|
|
6
|
+
"homepage": "https://github.com/pauldvlp/vp-templates",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/pauldvlp/vp-templates.git",
|
|
10
|
+
"directory": "packages/vp-react-ts-shadcn"
|
|
11
|
+
},
|
|
12
|
+
"bugs": "https://github.com/pauldvlp/vp-templates/issues",
|
|
5
13
|
"keywords": [
|
|
6
14
|
"vite-plus-generator",
|
|
7
15
|
"vite-plus",
|