chore: add shx to allow windows runs of the server for local testing

This commit is contained in:
Addison Waldow 2026-02-10 20:18:32 -07:00
parent 8ee9fc383d
commit c9adfde9f3

View File

@ -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",
},
};