milkio 0.6.0-alpha.2 → 0.6.0-alpha.3
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/package.json
CHANGED
|
@@ -237,8 +237,9 @@ export default async () => {
|
|
|
237
237
|
|
|
238
238
|
console.time(`Client Stage`);
|
|
239
239
|
try {
|
|
240
|
-
await $`bun run ./node_modules/typescript/bin/tsc --outDir
|
|
241
|
-
|
|
240
|
+
if (process.platform !== "win32") await $`bun run ./node_modules/typescript/bin/tsc --outDir './packages/client/project'`.quiet();
|
|
241
|
+
else await $`powershell.exe -command "bun run ./node_modules/typescript/bin/tsc --outDir './packages/client/project'"`.quiet();
|
|
242
|
+
} catch (error) { }
|
|
242
243
|
await Bun.build({
|
|
243
244
|
entrypoints: ["./packages/client/index.ts"],
|
|
244
245
|
outdir: "./packages/client/dist",
|