@tscircuit/core 0.0.851 → 0.0.852
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.
- package/dist/index.js +7 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -12814,6 +12814,12 @@ ${spiceString}`);
|
|
|
12814
12814
|
group._markDirty("SimulationSpiceEngineRender");
|
|
12815
12815
|
} catch (error) {
|
|
12816
12816
|
debug10(`Simulation failed for engine ${engineName}: ${error}`);
|
|
12817
|
+
const simulationExperiment = root.db.simulation_experiment.list()[0];
|
|
12818
|
+
root.db.simulation_unknown_experiment_error.insert({
|
|
12819
|
+
simulation_experiment_id: simulationExperiment?.simulation_experiment_id,
|
|
12820
|
+
error_type: "simulation_unknown_experiment_error",
|
|
12821
|
+
message: error instanceof Error ? error.message : String(error)
|
|
12822
|
+
});
|
|
12817
12823
|
}
|
|
12818
12824
|
});
|
|
12819
12825
|
}
|
|
@@ -17619,7 +17625,7 @@ import { identity as identity6 } from "transformation-matrix";
|
|
|
17619
17625
|
var package_default = {
|
|
17620
17626
|
name: "@tscircuit/core",
|
|
17621
17627
|
type: "module",
|
|
17622
|
-
version: "0.0.
|
|
17628
|
+
version: "0.0.851",
|
|
17623
17629
|
types: "dist/index.d.ts",
|
|
17624
17630
|
main: "dist/index.js",
|
|
17625
17631
|
module: "dist/index.js",
|