x3d-tidy 1.0.22 → 1.0.23

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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/src/traverse.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "x3d-tidy",
3
- "version": "1.0.22",
3
+ "version": "1.0.23",
4
4
  "description": "X3D Converter, Beautifier and Minimizer",
5
5
  "bin": {
6
6
  "x3d-tidy": "bin/x3d-tidy.js"
@@ -39,8 +39,8 @@
39
39
  },
40
40
  "homepage": "https://www.npmjs.com/package/x3d-tidy",
41
41
  "dependencies": {
42
- "electron": "^24.1.2",
43
- "x_ite": "^8.6.19",
44
- "yargs": "^17.7.1"
42
+ "electron": "^24.1.3",
43
+ "x_ite": "^8.6.20",
44
+ "yargs": "^17.7.2"
45
45
  }
46
46
  }
package/src/traverse.js CHANGED
@@ -106,7 +106,7 @@ module .exports = class Traverse
106
106
  }
107
107
  }
108
108
 
109
- for (const type of node .getType () .reverse ())
109
+ for (const type of node .getType () .slice () .reverse ())
110
110
  {
111
111
  switch (type)
112
112
  {