litecanvas 0.103.0 → 0.103.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 CHANGED
@@ -2,7 +2,6 @@
2
2
 
3
3
  <img width="128" height="128" alt="icon-128" src="https://github.com/user-attachments/assets/9dc09b77-6538-4fe9-8bc7-66204b57cf6e" />
4
4
 
5
-
6
5
  # Litecanvas
7
6
 
8
7
  [![NPM Version](https://badgen.net/npm/v/litecanvas?scale=1.1&label=NPM&color=2f9e44)](https://www.npmjs.com/package/litecanvas/) &nbsp;
@@ -36,10 +35,14 @@ If you want to test locally, just use one of the installation options.
36
35
 
37
36
  ### HTML/CDN
38
37
 
39
- Create a HTML file and add a `<script>` tag with our CDN link:
38
+ Create a HTML file and add a `<script>` tag with one of our CDN links:
40
39
 
41
40
  ```html
41
+ // Unpkg
42
42
  <script src="https://unpkg.com/litecanvas"></script>
43
+
44
+ // or jsDelivr
45
+ <script src="https://cdn.jsdelivr.net/npm/litecanvas"></script>
43
46
  ```
44
47
 
45
48
  ### Template
package/dist/dist.dev.js CHANGED
@@ -19,7 +19,7 @@
19
19
  };
20
20
 
21
21
  // src/version.js
22
- var version = "0.103.0";
22
+ var version = "0.103.2";
23
23
 
24
24
  // src/index.js
25
25
  function litecanvas(settings = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "litecanvas",
3
- "version": "0.103.0",
3
+ "version": "0.103.2",
4
4
  "description": "Lightweight HTML5 canvas 2D game engine suitable for small projects and creative coding. Inspired by PICO-8 and p5.js/Processing.",
5
5
  "license": "MIT",
6
6
  "author": "Luiz Bills <luizbills@pm.me>",
@@ -18,6 +18,7 @@
18
18
  "module": "./src/index.js",
19
19
  "types": "./types/index.d.ts",
20
20
  "unpkg": "./dist/dist.dev.js",
21
+ "jsdelivr": "./dist/dist.dev.js",
21
22
  "keywords": [
22
23
  "tiny",
23
24
  "micro",
package/src/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '0.103.0'
2
+ export const version = '0.103.2'