geomcli 0.5.38 → 0.5.40

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 (3) hide show
  1. package/README.md +1 -1
  2. package/dist/index.js +6 -0
  3. package/package.json +26 -25
package/README.md CHANGED
@@ -14,7 +14,7 @@ Getting started
14
14
  git clone https://github.com/charlyoleg2/parametrix
15
15
  cd parametrix
16
16
  npm install
17
- npm ci
17
+ npm run ci
18
18
  npm -w design-script run run
19
19
  ```
20
20
 
package/dist/index.js CHANGED
@@ -234,6 +234,7 @@ var c_fileFormat = [
234
234
  "json_param",
235
235
  "svg_all_figures",
236
236
  "dxf_all_figures",
237
+ "compute_log",
237
238
  "pax_all",
238
239
  "scad_3d_openscad",
239
240
  "js_3d_openjscad",
@@ -289,6 +290,10 @@ function decompose_outopt(outopt) {
289
290
  rFormat = EFormat2.eDXFALL;
290
291
  rWrite = 2 /* eOTHERS */;
291
292
  break;
293
+ case "compute_log":
294
+ rFormat = EFormat2.eTXTLOG;
295
+ rWrite = 2 /* eOTHERS */;
296
+ break;
292
297
  case "pax_all":
293
298
  rFormat = EFormat2.ePAX;
294
299
  rWrite = 2 /* eOTHERS */;
@@ -657,6 +662,7 @@ async function geom_cli(iArgs, dList, appPackage, outDir = "output") {
657
662
  // output-format
658
663
  //EFormat.eSVG,
659
664
  //EFormat.eDXF,
665
+ //EFormat.eTXTLOG,
660
666
  //EFormat.ePAX,
661
667
  //EFormat.eOPENSCAD,
662
668
  //EFormat.eJSCAD,
package/package.json CHANGED
@@ -1,26 +1,15 @@
1
1
  {
2
2
  "name": "geomcli",
3
- "version": "0.5.38",
3
+ "version": "0.5.40",
4
4
  "description": "the nodejs companion library of geometrix",
5
- "type": "module",
6
5
  "private": false,
7
- "exports": {
8
- ".": {
9
- "types": "./dist/index.d.ts",
10
- "default": "./dist/index.js"
11
- }
12
- },
13
- "files": [
14
- "dist",
15
- "!dist/**/*.map",
16
- "!dist/**/*.test.*",
17
- "!dist/**/*.spec.*"
18
- ],
19
6
  "repository": {
20
7
  "type": "git",
21
8
  "url": "git+https://github.com/charlyoleg2/parametrix.git"
22
9
  },
23
10
  "homepage": "https://charlyoleg2.github.io/parametrix/",
11
+ "author": "charlyoleg",
12
+ "license": "ISC",
24
13
  "keywords": [
25
14
  "cad",
26
15
  "programmatic",
@@ -30,7 +19,19 @@
30
19
  "arc",
31
20
  "gear"
32
21
  ],
33
- "author": "charlyoleg",
22
+ "type": "module",
23
+ "exports": {
24
+ ".": {
25
+ "types": "./dist/index.d.ts",
26
+ "default": "./dist/index.js"
27
+ }
28
+ },
29
+ "files": [
30
+ "dist",
31
+ "!dist/**/*.map",
32
+ "!dist/**/*.test.*",
33
+ "!dist/**/*.spec.*"
34
+ ],
34
35
  "tsup": {
35
36
  "entry": [
36
37
  "src/index.ts"
@@ -41,6 +42,14 @@
41
42
  "sourcemap": true,
42
43
  "clean": true
43
44
  },
45
+ "prettier": {
46
+ "useTabs": true,
47
+ "singleQuote": true,
48
+ "trailingComma": "none",
49
+ "printWidth": 100,
50
+ "plugins": [],
51
+ "overrides": []
52
+ },
44
53
  "scripts": {
45
54
  "dev": "tsup --watch",
46
55
  "build": "tsup",
@@ -54,7 +63,7 @@
54
63
  "clean": "shx rm -fr build dist node_modules"
55
64
  },
56
65
  "dependencies": {
57
- "geometrix": "^0.5.34",
66
+ "geometrix": "^0.5.36",
58
67
  "yargs": "^17.7.2"
59
68
  },
60
69
  "devDependencies": {
@@ -68,14 +77,6 @@
68
77
  "shx": "^0.3.4",
69
78
  "tsup": "^8.0.2",
70
79
  "typescript": "^5.4.5",
71
- "vitest": "^1.5.0"
72
- },
73
- "prettier": {
74
- "useTabs": true,
75
- "singleQuote": true,
76
- "trailingComma": "none",
77
- "printWidth": 100,
78
- "plugins": [],
79
- "overrides": []
80
+ "vitest": "^1.6.0"
80
81
  }
81
82
  }