x3d-tidy 1.0.21 → 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.
- package/README.md +1 -7
- package/package.json +6 -5
- package/src/traverse.js +1 -1
package/README.md
CHANGED
|
@@ -2,12 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
X3D converter, beautifier and minimizer
|
|
4
4
|
|
|
5
|
-
## Installation
|
|
6
|
-
|
|
7
|
-
```sh
|
|
8
|
-
$ npm i x3d-tidy
|
|
9
|
-
```
|
|
10
|
-
|
|
11
5
|
## Synopsis
|
|
12
6
|
|
|
13
7
|
**npx x3d-tidy** \[options\]
|
|
@@ -75,4 +69,4 @@ $ npx x3d-tidy -i file.x3d -o file.x3dv
|
|
|
75
69
|
|
|
76
70
|
## Online Converter
|
|
77
71
|
|
|
78
|
-
[Online X3D File Format Converter](https://create3000.github.io/x_ite/laboratory/x3d-file-converter) powered by X_ITE.
|
|
72
|
+
[Online X3D File Format Converter](https://create3000.github.io/x_ite/laboratory/x3d-file-converter) powered by [X_ITE](https://create3000.github.io/x_ite/).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "x3d-tidy",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.23",
|
|
4
4
|
"description": "X3D Converter, Beautifier and Minimizer",
|
|
5
5
|
"bin": {
|
|
6
6
|
"x3d-tidy": "bin/x3d-tidy.js"
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
"url": "git+https://github.com/create3000/x3d-tidy.git"
|
|
16
16
|
},
|
|
17
17
|
"keywords": [
|
|
18
|
-
"Compressor",
|
|
19
18
|
"glTF2",
|
|
20
19
|
"JSON",
|
|
21
20
|
"STL",
|
|
@@ -24,9 +23,11 @@
|
|
|
24
23
|
"wrl",
|
|
25
24
|
"XML",
|
|
26
25
|
"beautifier",
|
|
26
|
+
"Compressor",
|
|
27
27
|
"converter",
|
|
28
28
|
"GLB",
|
|
29
29
|
"Minimizer",
|
|
30
|
+
"npx",
|
|
30
31
|
"SVG",
|
|
31
32
|
"tidy",
|
|
32
33
|
"X3D"
|
|
@@ -38,8 +39,8 @@
|
|
|
38
39
|
},
|
|
39
40
|
"homepage": "https://www.npmjs.com/package/x3d-tidy",
|
|
40
41
|
"dependencies": {
|
|
41
|
-
"electron": "^24.1.
|
|
42
|
-
"x_ite": "^8.6.
|
|
43
|
-
"yargs": "^17.7.
|
|
42
|
+
"electron": "^24.1.3",
|
|
43
|
+
"x_ite": "^8.6.20",
|
|
44
|
+
"yargs": "^17.7.2"
|
|
44
45
|
}
|
|
45
46
|
}
|