@tscircuit/core 0.0.383 → 0.0.384

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/index.js +2 -1
  2. package/package.json +2 -1
package/dist/index.js CHANGED
@@ -7713,7 +7713,7 @@ import { identity as identity4 } from "transformation-matrix";
7713
7713
  var package_default = {
7714
7714
  name: "@tscircuit/core",
7715
7715
  type: "module",
7716
- version: "0.0.382",
7716
+ version: "0.0.383",
7717
7717
  types: "dist/index.d.ts",
7718
7718
  main: "dist/index.js",
7719
7719
  module: "dist/index.js",
@@ -7729,6 +7729,7 @@ var package_default = {
7729
7729
  format: "biome format . --write",
7730
7730
  "measure-bundle": "howfat -r table .",
7731
7731
  "pkg-pr-new-release": "bunx pkg-pr-new publish --comment=off --peerDeps",
7732
+ "smoke-test:dist": "bun run scripts/smoke-tests/test-dist-simple-circuit.tsx",
7732
7733
  "build:benchmarking": "bun build --experimental-html ./benchmarking/website/index.html --outdir ./benchmarking-dist",
7733
7734
  "build:benchmarking:watch": `chokidar "./{benchmarking,lib}/**/*.{ts,tsx}" -c 'bun build --experimental-html ./benchmarking/website/index.html --outdir ./benchmarking-dist'`,
7734
7735
  "start:benchmarking": 'concurrently "bun run build:benchmarking:watch" "live-server ./benchmarking-dist"'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tscircuit/core",
3
3
  "type": "module",
4
- "version": "0.0.383",
4
+ "version": "0.0.384",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -17,6 +17,7 @@
17
17
  "format": "biome format . --write",
18
18
  "measure-bundle": "howfat -r table .",
19
19
  "pkg-pr-new-release": "bunx pkg-pr-new publish --comment=off --peerDeps",
20
+ "smoke-test:dist": "bun run scripts/smoke-tests/test-dist-simple-circuit.tsx",
20
21
  "build:benchmarking": "bun build --experimental-html ./benchmarking/website/index.html --outdir ./benchmarking-dist",
21
22
  "build:benchmarking:watch": "chokidar \"./{benchmarking,lib}/**/*.{ts,tsx}\" -c 'bun build --experimental-html ./benchmarking/website/index.html --outdir ./benchmarking-dist'",
22
23
  "start:benchmarking": "concurrently \"bun run build:benchmarking:watch\" \"live-server ./benchmarking-dist\""