x3d-tidy 1.0.55 → 1.0.56

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 +1 -1
  2. package/src/convert.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "x3d-tidy",
3
- "version": "1.0.55",
3
+ "version": "1.0.56",
4
4
  "description": "X3D Converter, Beautifier and Minimizer",
5
5
  "bin": {
6
6
  "x3d-tidy": "bin/x3d-tidy.js"
package/src/convert.js CHANGED
@@ -65,13 +65,13 @@ async function convert (argv)
65
65
  {
66
66
  type: "string",
67
67
  alias: "o",
68
- description: "Set output filen.",
68
+ description: "Set output file. To output it to stdout use only the extension, e.g. '.x3dv'.",
69
69
  })
70
70
  .option ("style",
71
71
  {
72
72
  type: "string",
73
73
  alias: "s",
74
- description: "Set output style, default is \"TIDY\".",
74
+ description: "Set output style, default is 'TIDY'.",
75
75
  choices: ["CLEAN", "SMALL", "COMPACT", "TIDY"],
76
76
  })
77
77
  .option ("double",