@xera-ai/web 0.11.0 → 0.11.2
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 +1 -1
- package/package.json +2 -2
- package/src/generator/typecheck.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -470,7 +470,7 @@ async function typecheckTicket(ticketDir) {
|
|
|
470
470
|
]
|
|
471
471
|
};
|
|
472
472
|
}
|
|
473
|
-
const proc = spawnSync("
|
|
473
|
+
const proc = spawnSync("bunx", ["tsc", "--noEmit", "-p", tsconfig], { encoding: "utf8" });
|
|
474
474
|
if (proc.status === 0)
|
|
475
475
|
return { ok: true, errors: [] };
|
|
476
476
|
const out = `${proc.stdout ?? ""}${proc.stderr ?? ""}`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xera-ai/web",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@cucumber/gherkin": "39.1.0",
|
|
25
25
|
"@cucumber/messages": "32.3.1",
|
|
26
26
|
"@playwright/test": "1.60.0",
|
|
27
|
-
"@xera-ai/core": "^0.11.
|
|
27
|
+
"@xera-ai/core": "^0.11.2",
|
|
28
28
|
"fflate": "0.8.3"
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -39,7 +39,7 @@ export async function typecheckTicket(ticketDir: string): Promise<TypecheckResul
|
|
|
39
39
|
};
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
-
const proc = spawnSync('
|
|
42
|
+
const proc = spawnSync('bunx', ['tsc', '--noEmit', '-p', tsconfig], { encoding: 'utf8' });
|
|
43
43
|
if (proc.status === 0) return { ok: true, errors: [] };
|
|
44
44
|
|
|
45
45
|
const out = `${proc.stdout ?? ''}${proc.stderr ?? ''}`;
|