eleva 1.2.1-alpha → 1.2.2-alpha

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 (2) hide show
  1. package/README.md +7 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -208,13 +208,15 @@ npm install eleva
208
208
  Or include it directly via CDN:
209
209
 
210
210
  ```html
211
- <!-- unpkg -->
212
- <script src="https://unpkg.com/eleva/dist/eleva.min.js"></script>
211
+ <!-- jsDelivr (Recommended) -->
212
+ <script src="https://cdn.jsdelivr.net/npm/eleva"></script>
213
213
  ```
214
214
 
215
+ or
216
+
215
217
  ```html
216
- <!-- jsDelivr -->
217
- <script src="https://cdn.jsdelivr.net/npm/eleva/dist/eleva.min.js"></script>
218
+ <!-- unpkg -->
219
+ <script src="https://unpkg.com/eleva/dist/eleva.min.js"></script>
218
220
  ```
219
221
 
220
222
  ---
@@ -265,7 +267,7 @@ Include Eleva via a script tag and use the global variable:
265
267
  </head>
266
268
  <body>
267
269
  <div id="app"></div>
268
- <script src="https://cdn.jsdelivr.net/npm/eleva/dist/eleva.min.js"></script>
270
+ <script src="https://cdn.jsdelivr.net/npm/eleva"></script>
269
271
  <script>
270
272
  const app = new Eleva("MyApp");
271
273
  app.component("HelloWorld", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eleva",
3
- "version": "1.2.1-alpha",
3
+ "version": "1.2.2-alpha",
4
4
  "description": "A minimalist and lightweight, pure vanilla JavaScript frontend runtime framework.",
5
5
  "type": "module",
6
6
  "main": "dist/eleva.js",