cedro 0.1.0 → 0.1.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 +13 -2
- package/index.html +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
|
-
#
|
|
1
|
+
# cedro
|
|
2
2
|
|
|
3
3
|
Javascript library to build user interfece based on widgets.
|
|
4
4
|
|
|
5
|
-
Don't use this library. "
|
|
5
|
+
**Don't use this library. "cedro" is on development.**
|
|
6
|
+
|
|
7
|
+
## Getting Started
|
|
8
|
+
|
|
9
|
+
Install Vite project template from command line
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
sudo npm install -g degit
|
|
13
|
+
npx degit hdrdevs/vite-cedro#main my-app-name
|
|
14
|
+
npm install
|
|
15
|
+
npm run dev
|
|
16
|
+
```
|
package/index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
-
<title>
|
|
7
|
+
<title>cedro</title>
|
|
8
8
|
<link rel="stylesheet" href="src/ui/styles/main.css" />
|
|
9
9
|
</head>
|
|
10
10
|
<body>
|