create-dovite 1.0.1 → 1.0.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 +22 -4
- package/package.json +3 -3
- package/template/src/App.jsx +1 -1
package/README.md
CHANGED
|
@@ -1,15 +1,28 @@
|
|
|
1
1
|
# create-dovite
|
|
2
2
|
|
|
3
|
-
A Vite template with Tailwind CSS, shadcn/ui, and DOMO integration.
|
|
3
|
+
A Vite template with Tailwind CSS(v4), shadcn/ui(canary), and DOMO integration.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
> **Note:** This package requires yarn and the DOMO CLI to be installed before use.
|
|
7
|
+
|
|
8
|
+
## Prerequisites
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
# Install yarn if you don't have it
|
|
12
|
+
npm install -g yarn
|
|
13
|
+
|
|
14
|
+
# For DOMO CLI installation, refer to:
|
|
15
|
+
# https://developer.domo.com/portal/6hlzv1hinkq19-setup-and-installation
|
|
16
|
+
```
|
|
4
17
|
|
|
5
18
|
## Usage
|
|
6
19
|
|
|
7
20
|
```bash
|
|
21
|
+
# Using yarn (recommended)
|
|
22
|
+
yarn create dovite my-app
|
|
23
|
+
|
|
8
24
|
# Using npm
|
|
9
25
|
npx create-dovite my-app
|
|
10
|
-
|
|
11
|
-
# Using yarn
|
|
12
|
-
yarn create dovite my-app
|
|
13
26
|
```
|
|
14
27
|
|
|
15
28
|
## Features
|
|
@@ -25,5 +38,10 @@ yarn create dovite my-app
|
|
|
25
38
|
- Node.js 16.x or higher
|
|
26
39
|
- npm or yarn
|
|
27
40
|
|
|
41
|
+
## Inspirations
|
|
42
|
+
|
|
43
|
+
- [DOMO Starter Kits](https://developer.domo.com/portal/u8w475o2245yp-starter-kits)
|
|
44
|
+
- [Vitawind](https://vitawind.vercel.app/)
|
|
45
|
+
|
|
28
46
|
## License
|
|
29
47
|
MIT
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-dovite",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Vite template with Tailwind, shadcn and DOMO integration",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Vite template with Tailwind(v4), shadcn(canary) and DOMO integration",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"create-dovite": "index.js"
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"license": "MIT",
|
|
24
24
|
"repository": {
|
|
25
25
|
"type": "git",
|
|
26
|
-
"url": "https://github.com/Ajay-Balu"
|
|
26
|
+
"url": "https://github.com/Ajay-Balu/create-dovite"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/template/src/App.jsx
CHANGED
|
@@ -17,7 +17,7 @@ function App() {
|
|
|
17
17
|
<a href="https://react.dev" target="_blank">
|
|
18
18
|
<img src={reactLogo} className="logo react" alt="React logo" />
|
|
19
19
|
</a>
|
|
20
|
-
<a href="
|
|
20
|
+
<a href="https://developer.domo.com/portal/u8w475o2245yp-starter-kits" target="_blank">
|
|
21
21
|
<img src={domoLogo} className='logo domo' alt="DOMO logo" />
|
|
22
22
|
</a>
|
|
23
23
|
</div>
|