litecanvas 0.103.4 → 0.103.6
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 +7 -3
- package/dist/dist.dev.js +652 -807
- package/dist/dist.js +261 -636
- package/dist/dist.min.js +1 -1
- package/package.json +3 -3
- package/src/dev.js +1 -1
- package/src/index.js +158 -141
- package/src/version.js +1 -1
package/README.md
CHANGED
|
@@ -35,13 +35,17 @@ If you want to test locally, just use one of the installation options.
|
|
|
35
35
|
|
|
36
36
|
### HTML/CDN
|
|
37
37
|
|
|
38
|
-
Create a HTML file and add a `<script>` tag with one of
|
|
38
|
+
Create a HTML file and add a `<script>` tag with one of the following CDN links:
|
|
39
|
+
|
|
40
|
+
#### Unpkg
|
|
39
41
|
|
|
40
42
|
```html
|
|
41
|
-
// Unpkg
|
|
42
43
|
<script src="https://unpkg.com/litecanvas"></script>
|
|
44
|
+
```
|
|
43
45
|
|
|
44
|
-
|
|
46
|
+
#### jsDelivr
|
|
47
|
+
|
|
48
|
+
```html
|
|
45
49
|
<script src="https://cdn.jsdelivr.net/npm/litecanvas"></script>
|
|
46
50
|
```
|
|
47
51
|
|