From c9adfde9f3e6a29312b9530a854cf6eb6ff3485d Mon Sep 17 00:00:00 2001 From: Addison Waldow Date: Tue, 10 Feb 2026 20:18:32 -0700 Subject: [PATCH] chore: add shx to allow windows runs of the server for local testing --- src/generator/package-json.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/generator/package-json.ts b/src/generator/package-json.ts index ef97985..7766eec 100644 --- a/src/generator/package-json.ts +++ b/src/generator/package-json.ts @@ -23,7 +23,7 @@ export function generatePackageJson( files: ['build', 'src'], scripts: { start: 'node build/index.js', - build: 'tsc && chmod 755 build/index.js', + build: 'tsc && shx chmod 755 build/index.js', typecheck: 'tsc --noEmit', prestart: 'npm run build', }, @@ -40,6 +40,7 @@ export function generatePackageJson( devDependencies: { '@types/node': '^22.15.2', typescript: '^5.8.3', + "shx": "^0.4.0", }, };