geomcli 0.5.41 → 0.5.42

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/dist/index.js +6 -0
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -238,6 +238,7 @@ var c_fileFormat = [
238
238
  "pax_all",
239
239
  "scad_3d_openscad",
240
240
  "js_3d_openjscad",
241
+ "py_3d_freecad",
241
242
  "zip_all"
242
243
  ];
243
244
  function get_outopt_array(dList, selD, paramPath, modif) {
@@ -306,6 +307,10 @@ function decompose_outopt(outopt) {
306
307
  rFormat = EFormat2.eJSCAD;
307
308
  rWrite = 2 /* eOTHERS */;
308
309
  break;
310
+ case "py_3d_freecad":
311
+ rFormat = EFormat2.eFREECAD;
312
+ rWrite = 2 /* eOTHERS */;
313
+ break;
309
314
  case "zip_all":
310
315
  rFormat = EFormat2.eZIP;
311
316
  rWrite = 2 /* eOTHERS */;
@@ -666,6 +671,7 @@ async function geom_cli(iArgs, dList, appPackage, outDir = "output") {
666
671
  //EFormat.ePAX,
667
672
  //EFormat.eOPENSCAD,
668
673
  //EFormat.eJSCAD,
674
+ //EFormat.eFREECAD,
669
675
  //EFormat.eZIP,
670
676
  oOpt.eFace,
671
677
  // selected-2d-face
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "geomcli",
3
- "version": "0.5.41",
3
+ "version": "0.5.42",
4
4
  "description": "the nodejs companion library of geometrix",
5
5
  "private": false,
6
6
  "repository": {
@@ -63,7 +63,7 @@
63
63
  "clean": "shx rm -fr build dist node_modules"
64
64
  },
65
65
  "dependencies": {
66
- "geometrix": "^0.5.36",
66
+ "geometrix": "^0.5.38",
67
67
  "yargs": "^17.7.2"
68
68
  },
69
69
  "devDependencies": {