@tscircuit/cli 0.1.1018 → 0.1.1019
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/cli/main.js +897 -538
- package/dist/lib/index.js +7 -2
- package/package.json +2 -1
package/dist/lib/index.js
CHANGED
|
@@ -60432,18 +60432,19 @@ var getNodeHandler = (winterSpec, { port, middleware = [] }) => {
|
|
|
60432
60432
|
}));
|
|
60433
60433
|
};
|
|
60434
60434
|
// package.json
|
|
60435
|
-
var version = "0.1.
|
|
60435
|
+
var version = "0.1.1018";
|
|
60436
60436
|
var package_default = {
|
|
60437
60437
|
name: "@tscircuit/cli",
|
|
60438
|
+
version,
|
|
60438
60439
|
main: "dist/cli/main.js",
|
|
60439
60440
|
exports: {
|
|
60440
60441
|
".": "./dist/cli/main.js",
|
|
60441
60442
|
"./lib": "./dist/lib/index.js"
|
|
60442
60443
|
},
|
|
60443
|
-
version,
|
|
60444
60444
|
devDependencies: {
|
|
60445
60445
|
"@babel/standalone": "^7.26.9",
|
|
60446
60446
|
"@biomejs/biome": "^1.9.4",
|
|
60447
|
+
"@tscircuit/circuit-json-placement-analysis": "^0.0.1",
|
|
60447
60448
|
"@tscircuit/circuit-json-util": "0.0.72",
|
|
60448
60449
|
"@tscircuit/fake-snippets": "^0.0.182",
|
|
60449
60450
|
"@tscircuit/file-server": "^0.0.32",
|
|
@@ -60503,6 +60504,10 @@ var package_default = {
|
|
|
60503
60504
|
peerDependencies: {
|
|
60504
60505
|
tscircuit: "*"
|
|
60505
60506
|
},
|
|
60507
|
+
exports: {
|
|
60508
|
+
".": "./dist/cli/main.js",
|
|
60509
|
+
"./lib": "./dist/lib/index.js"
|
|
60510
|
+
},
|
|
60506
60511
|
bin: {
|
|
60507
60512
|
"tscircuit-cli": "./cli/entrypoint.js"
|
|
60508
60513
|
},
|
package/package.json
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tscircuit/cli",
|
|
3
|
+
"version": "0.1.1019",
|
|
3
4
|
"main": "dist/cli/main.js",
|
|
4
5
|
"exports": {
|
|
5
6
|
".": "./dist/cli/main.js",
|
|
6
7
|
"./lib": "./dist/lib/index.js"
|
|
7
8
|
},
|
|
8
|
-
"version": "0.1.1018",
|
|
9
9
|
"devDependencies": {
|
|
10
10
|
"@babel/standalone": "^7.26.9",
|
|
11
11
|
"@biomejs/biome": "^1.9.4",
|
|
12
|
+
"@tscircuit/circuit-json-placement-analysis": "^0.0.1",
|
|
12
13
|
"@tscircuit/circuit-json-util": "0.0.72",
|
|
13
14
|
"@tscircuit/fake-snippets": "^0.0.182",
|
|
14
15
|
"@tscircuit/file-server": "^0.0.32",
|