Add node shebangs to server bins

This commit is contained in:
Federico Jaramillo Martinez
2026-05-09 22:52:28 +02:00
parent 4f7d057c41
commit 9665031ba4
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -1,3 +1,4 @@
#!/usr/bin/env node
import { effectivePiWebConfig } from "../config.js";
import { buildApp } from "./app.js";
+1
View File
@@ -1,3 +1,4 @@
#!/usr/bin/env node
import { mkdir, rm } from "node:fs/promises";
import { dirname } from "node:path";
import Fastify from "fastify";