@typecad/expect 1.0.0-alpha.12 → 1.0.0-alpha.14

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.
@@ -377,8 +377,6 @@ function writeBuildConfig(buildDir, projectRoot, entryFileName, buildTarget, con
377
377
  lines.push(' output: {');
378
378
  if (baseValues.output?.framework)
379
379
  lines.push(` framework: '${baseValues.output?.framework}',`);
380
- if (baseValues.output?.optimize)
381
- lines.push(` optimize: '${baseValues.output?.optimize}',`);
382
380
  lines.push(` outDir: './out',`);
383
381
  lines.push(' },');
384
382
  if (baseValues.console?.baudRate) {
@@ -24,7 +24,6 @@ export interface RawConfig {
24
24
  test?: Partial<TestConfig>;
25
25
  output?: {
26
26
  framework?: string;
27
- optimize?: string;
28
27
  outDir?: string;
29
28
  };
30
29
  console?: {
@@ -364,8 +364,6 @@ function extractOutputConfig(obj) {
364
364
  continue;
365
365
  if (name === 'framework')
366
366
  result.framework = v;
367
- if (name === 'optimize')
368
- result.optimize = v;
369
367
  if (name === 'outDir')
370
368
  result.outDir = v;
371
369
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typecad/expect",
3
- "version": "1.0.0-alpha.12",
3
+ "version": "1.0.0-alpha.14",
4
4
  "description": "Hardware test framework for TypeCAD — vitest-style assertions over serial",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -39,12 +39,12 @@
39
39
  },
40
40
  "dependencies": {
41
41
  "typescript": "^5.7.3",
42
- "serialport": "^12.0.0",
43
- "@typecad/arduino-cli": "1.0.0-alpha.12",
44
- "@typecad/hal": "1.0.0-alpha.12"
42
+ "serialport": "^13.0.0",
43
+ "@typecad/arduino-cli": "1.0.0-alpha.14",
44
+ "@typecad/hal": "1.0.0-alpha.14"
45
45
  },
46
46
  "optionalDependencies": {
47
- "@typecad/framework-zephyr": "1.0.0-alpha.12"
47
+ "@typecad/framework-zephyr": "1.0.0-alpha.14"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@types/node": "^22.10.7"
@@ -77,7 +77,7 @@
77
77
  "typescript"
78
78
  ],
79
79
  "engines": {
80
- "node": ">=18"
80
+ "node": ">=22.11.0"
81
81
  },
82
82
  "author": "typecad0",
83
83
  "sideEffects": false