x_ite-node 1.1.3 → 1.1.5
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/package.json +4 -4
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "x_ite-node",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "Pure Node.js wrapper of X_ITE",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"files": [
|
|
@@ -53,13 +53,13 @@
|
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"atob": "^2.1.2",
|
|
55
55
|
"filereader": "^0.10.3",
|
|
56
|
-
"jsdom": "^
|
|
56
|
+
"jsdom": "^27.0.0",
|
|
57
57
|
"jsdom-global": "^3.0.2",
|
|
58
58
|
"node-fetch": "^2.7.0",
|
|
59
59
|
"node-localstorage": "^3.0.5",
|
|
60
60
|
"nogl": "^1.1.0",
|
|
61
|
-
"skia-canvas": "^
|
|
62
|
-
"x_ite": "^12.
|
|
61
|
+
"skia-canvas": "^3.0.8",
|
|
62
|
+
"x_ite": "^12.1.1"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
65
|
"jest": "^30.1.3",
|
package/src/index.js
CHANGED
|
@@ -359,7 +359,7 @@ HTMLCanvasElement .prototype .getContext = function (contextType, ... args)
|
|
|
359
359
|
{
|
|
360
360
|
const canvas = new Canvas ();
|
|
361
361
|
|
|
362
|
-
canvas .toDataURL = canvas .
|
|
362
|
+
canvas .toDataURL = canvas .toURLSync;
|
|
363
363
|
|
|
364
364
|
return Object .assign (canvas .getContext ("2d"),
|
|
365
365
|
{
|