pixi.js 7.1.0-alpha → 7.1.1

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License
2
2
 
3
- Copyright (c) 2013-2017 Mathew Groves, Chad Engler
3
+ Copyright (c) 2013-2023 Mathew Groves, Chad Engler
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -24,11 +24,27 @@ PixiJS can be installed with [npm](https://docs.npmjs.com/getting-started/what-i
24
24
  ```
25
25
  npm install pixi.js
26
26
  ```
27
+
27
28
  There is no default export. The correct way to import PixiJS is:
28
29
 
29
30
  ```js
30
- import * as PIXI from 'pixi.js'
31
+ import * as PIXI from 'pixi.js';
32
+ ```
33
+
34
+ #### CDN Install
35
+
36
+ Via jsDelivr:
37
+
38
+ ```html
39
+ <script src="https://cdn.jsdelivr.net/npm/pixi.js@7.x/dist/pixi.min.js"></script>
31
40
  ```
41
+
42
+ Or via unpkg:
43
+
44
+ ```html
45
+ <script src="https://unpkg.com/pixi.js@7.x/dist/pixi.min.js"></script>
46
+ ```
47
+
32
48
  ### Basic Usage Example
33
49
 
34
50
  ```js