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.
Files changed (3) hide show
  1. package/README.md +13 -2
  2. package/index.html +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,16 @@
1
- # webware
1
+ # cedro
2
2
 
3
3
  Javascript library to build user interfece based on widgets.
4
4
 
5
- Don't use this library. "Webware" is on development.
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>Vite + TS</title>
7
+ <title>cedro</title>
8
8
  <link rel="stylesheet" href="src/ui/styles/main.css" />
9
9
  </head>
10
10
  <body>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cedro",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "devDependencies": {
6
6
  "@types/node": "^20.4.4",