designix-cli 0.5.37 → 0.5.39

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