From fc9a3c46d8b14387fe4ace9dfd8cf2a90714d54e Mon Sep 17 00:00:00 2001 From: Jonathan Delgado Date: Fri, 16 Aug 2024 20:01:18 -0400 Subject: [PATCH] fix: update Makefile to compile bin.ts instead of index.ts Updated the `build` target in the Makefile to use `src/bin.ts` instead of `index.ts`, changing the output from `dist/q` to the same. This likely reflects a change in the entry point or compilation target for the project. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index db54cf1..d586a30 100644 --- a/Makefile +++ b/Makefile @@ -6,4 +6,4 @@ preparepkg: bunx prettier -w pkg.ts build: - bun build --compile index.ts --outfile dist/q + bun build --compile src/bin.ts --outfile dist/q