x_ite-node 2.1.0 → 2.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/package.json +5 -5
- package/src/index.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "x_ite-node",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "Pure Node.js Wrapper of X_ITE",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"files": [
|
|
@@ -53,17 +53,17 @@
|
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"atob": "^2.1.2",
|
|
55
55
|
"filereader": "^0.10.3",
|
|
56
|
-
"jsdom": "
|
|
56
|
+
"jsdom": "30.0.0",
|
|
57
57
|
"jsdom-global": "^3.0.2",
|
|
58
58
|
"node-localstorage": "^3.0.5",
|
|
59
59
|
"nogl": "^1.1.0",
|
|
60
60
|
"skia-canvas": "^3.0.8",
|
|
61
|
-
"x_ite": "^16.0.
|
|
61
|
+
"x_ite": "^16.0.1"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@eslint/js": "^10.0.1",
|
|
65
|
-
"eslint": "^10.
|
|
66
|
-
"globals": "^17.
|
|
65
|
+
"eslint": "^10.8.0",
|
|
66
|
+
"globals": "^17.8.0",
|
|
67
67
|
"shell-tools": "^1.1.9",
|
|
68
68
|
"vitest": "^4.1.10"
|
|
69
69
|
},
|
package/src/index.js
CHANGED
|
@@ -172,7 +172,7 @@ Object .defineProperties (window,
|
|
|
172
172
|
|
|
173
173
|
if (result)
|
|
174
174
|
{
|
|
175
|
-
// const mimeType = result [1] ||
|
|
175
|
+
// const mimeType = result [1] || "text/plain"";
|
|
176
176
|
|
|
177
177
|
let data = parsedURL .href .substring (result [0] .length);
|
|
178
178
|
|
|
@@ -473,7 +473,7 @@ const glFunctions = Object .fromEntries ([
|
|
|
473
473
|
]
|
|
474
474
|
.map (name => [name, Function .prototype]));
|
|
475
475
|
|
|
476
|
-
X3D .Context .create = function (canvas,
|
|
476
|
+
X3D .Context .create = function (/* canvas, preserveDrawingBuffer */)
|
|
477
477
|
{
|
|
478
478
|
const
|
|
479
479
|
gl = nogl (),
|