tscircuit 0.0.2004 → 0.0.2005-libonly
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/browser.min.js +32 -32
- package/package.json +3 -9
- package/cli.mjs +0 -33
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "dist/index.js",
|
|
4
4
|
"types": "dist/index.d.ts",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"version": "0.0.
|
|
6
|
+
"version": "0.0.2005-libonly",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
13
13
|
"dist",
|
|
14
|
-
"cli.mjs",
|
|
15
14
|
"globals.d.ts"
|
|
16
15
|
],
|
|
17
16
|
"scripts": {
|
|
@@ -30,10 +29,6 @@
|
|
|
30
29
|
},
|
|
31
30
|
"./browser": "./dist/browser.min.js"
|
|
32
31
|
},
|
|
33
|
-
"bin": {
|
|
34
|
-
"tsci": "cli.mjs",
|
|
35
|
-
"tscircuit": "cli.mjs"
|
|
36
|
-
},
|
|
37
32
|
"devDependencies": {
|
|
38
33
|
"@types/bun": "^1.2.16",
|
|
39
34
|
"esbuild": "^0.20.2",
|
|
@@ -55,7 +50,6 @@
|
|
|
55
50
|
"@tscircuit/capacity-autorouter": "^0.0.628",
|
|
56
51
|
"@tscircuit/checks": "0.0.142",
|
|
57
52
|
"@tscircuit/circuit-json-util": "^0.0.97",
|
|
58
|
-
"@tscircuit/cli": "^0.1.1605",
|
|
59
53
|
"@tscircuit/copper-pour-solver": "0.0.35",
|
|
60
54
|
"@tscircuit/core": "^0.0.1393",
|
|
61
55
|
"@tscircuit/eval": "^0.0.977",
|
|
@@ -70,7 +64,7 @@
|
|
|
70
64
|
"@tscircuit/miniflex": "^0.0.4",
|
|
71
65
|
"@tscircuit/ngspice-spice-engine": "^0.0.18",
|
|
72
66
|
"@tscircuit/props": "^0.0.567",
|
|
73
|
-
"@tscircuit/runframe": "^0.0.
|
|
67
|
+
"@tscircuit/runframe": "^0.0.2163",
|
|
74
68
|
"@tscircuit/schematic-match-adapt": "^0.0.18",
|
|
75
69
|
"@tscircuit/schematic-trace-solver": "^0.0.75",
|
|
76
70
|
"@tscircuit/simple-3d-svg": "^0.0.41",
|
|
@@ -116,4 +110,4 @@
|
|
|
116
110
|
"tslib": "^2.8.1",
|
|
117
111
|
"zod": "^3.25.67"
|
|
118
112
|
}
|
|
119
|
-
}
|
|
113
|
+
}
|
package/cli.mjs
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env bun
|
|
2
|
-
|
|
3
|
-
import { createRequire } from "node:module";
|
|
4
|
-
import { existsSync } from "node:fs";
|
|
5
|
-
import { dirname, join } from "node:path";
|
|
6
|
-
import { fileURLToPath } from "node:url";
|
|
7
|
-
|
|
8
|
-
const require = createRequire(import.meta.url);
|
|
9
|
-
|
|
10
|
-
// Use require to import package.json
|
|
11
|
-
const packageJson = require("./package.json");
|
|
12
|
-
global.TSCIRCUIT_VERSION = packageJson.version;
|
|
13
|
-
|
|
14
|
-
// Expose the runframe + eval bundle shipped by this tscircuit version (the one
|
|
15
|
-
// that provides the `tsci` binary) so `tsci dev` can use it when the project has
|
|
16
|
-
// no local tscircuit installed. The CLI prefers a project-local tscircuit over
|
|
17
|
-
// this, and an explicit RUNFRAME_STANDALONE_FILE_PATH over both.
|
|
18
|
-
if (!process.env.TSCIRCUIT_GLOBAL_STANDALONE_FILE_PATH) {
|
|
19
|
-
const browserBundlePath = join(
|
|
20
|
-
dirname(fileURLToPath(import.meta.url)),
|
|
21
|
-
"dist",
|
|
22
|
-
"browser.min.js",
|
|
23
|
-
);
|
|
24
|
-
if (existsSync(browserBundlePath)) {
|
|
25
|
-
process.env.TSCIRCUIT_GLOBAL_STANDALONE_FILE_PATH = browserBundlePath;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
async function main() {
|
|
30
|
-
await import("@tscircuit/cli");
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
main();
|