designix-cli 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.
@@ -6,7 +6,7 @@ import { geom_cli } from "geomcli";
6
6
  // package.json
7
7
  var package_default = {
8
8
  name: "designix-cli",
9
- version: "0.5.38",
9
+ version: "0.5.40",
10
10
  description: "The application cli as frontend of geometrix and designix",
11
11
  private: false,
12
12
  repository: {
@@ -74,30 +74,32 @@ var package_default = {
74
74
  clean: "shx rm -fr build dist node_modules output"
75
75
  },
76
76
  dependencies: {
77
- designix: "^0.5.46",
78
- geomcli: "^0.5.48",
79
- geometrix: "^0.5.45"
77
+ designix: "^0.5.48",
78
+ geomcli: "^0.5.50",
79
+ geometrix: "^0.5.47"
80
80
  },
81
81
  devDependencies: {
82
82
  "@eslint/js": "^9.8.0",
83
83
  "@types/eslint__js": "^8.42.3",
84
84
  bats: "^1.11.0",
85
- eslint: "^9.8.0",
85
+ eslint: "^9.10.0",
86
86
  "eslint-config-prettier": "^9.1.0",
87
87
  "npm-run-all": "^4.1.5",
88
88
  prettier: "^3.3.3",
89
89
  shx: "^0.3.4",
90
90
  tsup: "^8.2.4",
91
- typescript: "^5.5.4",
92
- "typescript-eslint": "^8.0.0",
91
+ typescript: "^5.6.2",
92
+ "typescript-eslint": "^8.4.0",
93
93
  vitest: "^2.0.5"
94
94
  }
95
95
  };
96
96
 
97
97
  // src/designix-cli.ts
98
98
  import {
99
- gearWheelWheelDef,
100
- simplifiedGearWheelDef,
99
+ gearWheelDef,
100
+ gearBarDef,
101
+ gearRingDef,
102
+ gearEpicycloidDef,
101
103
  heliostatDef,
102
104
  heliostat_2Def,
103
105
  baseDef,
@@ -117,8 +119,10 @@ import {
117
119
  surfaceDef
118
120
  } from "designix";
119
121
  var designList = {
120
- "gear/gear_wheel_wheel": gearWheelWheelDef,
121
- "gear/simplified_gear_wheel": simplifiedGearWheelDef,
122
+ "gear/gear_wheel": gearWheelDef,
123
+ "gear/gear_bar": gearBarDef,
124
+ "gear/gear_ring": gearRingDef,
125
+ "gear/gear_epicycloid": gearEpicycloidDef,
122
126
  "heliostat/heliostat": heliostatDef,
123
127
  "heliostat/heliostat_2": heliostat_2Def,
124
128
  "heliostat/base": baseDef,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "designix-cli",
3
- "version": "0.5.38",
3
+ "version": "0.5.40",
4
4
  "description": "The application cli as frontend of geometrix and designix",
5
5
  "private": false,
6
6
  "repository": {
@@ -68,22 +68,22 @@
68
68
  "clean": "shx rm -fr build dist node_modules output"
69
69
  },
70
70
  "dependencies": {
71
- "designix": "^0.5.46",
72
- "geomcli": "^0.5.48",
73
- "geometrix": "^0.5.45"
71
+ "designix": "^0.5.48",
72
+ "geomcli": "^0.5.50",
73
+ "geometrix": "^0.5.47"
74
74
  },
75
75
  "devDependencies": {
76
76
  "@eslint/js": "^9.8.0",
77
77
  "@types/eslint__js": "^8.42.3",
78
78
  "bats": "^1.11.0",
79
- "eslint": "^9.8.0",
79
+ "eslint": "^9.10.0",
80
80
  "eslint-config-prettier": "^9.1.0",
81
81
  "npm-run-all": "^4.1.5",
82
82
  "prettier": "^3.3.3",
83
83
  "shx": "^0.3.4",
84
84
  "tsup": "^8.2.4",
85
- "typescript": "^5.5.4",
86
- "typescript-eslint": "^8.0.0",
85
+ "typescript": "^5.6.2",
86
+ "typescript-eslint": "^8.4.0",
87
87
  "vitest": "^2.0.5"
88
88
  }
89
89
  }