Skip to content

Commit

Permalink
fix: update Makefile to compile bin.ts instead of index.ts
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
JonDotsoy committed Aug 17, 2024
1 parent 22b7616 commit fc9a3c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit fc9a3c4

Please sign in to comment.