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 +5 -2
- package/dist/dist.dev.js +1 -1
- package/package.json +2 -1
- package/src/version.js +1 -1
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
|
[](https://www.npmjs.com/package/litecanvas/)
|
|
@@ -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
|
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "litecanvas",
|
|
3
|
-
"version": "0.103.
|
|
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.
|
|
2
|
+
export const version = '0.103.2'
|