-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: dist folder not exported in npmjs
- Loading branch information
1 parent
e0bb7b2
commit 59f0d73
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "logestic", | ||
"version": "0.5.0", | ||
"version": "0.5.1", | ||
"author": "Nishant Aanjaney Jalan <[email protected]>", | ||
"description": "An advanced and customisable logging library for ElysiaJS", | ||
"keywords": [ | ||
|
@@ -25,7 +25,8 @@ | |
"type": "module", | ||
"scripts": { | ||
"build": "rimraf dist && bun build src/index.ts --outdir dist --target bun --minify -e elysia && tsc", | ||
"test": "bun test" | ||
"test": "bun test", | ||
"prepublishOnly": "bun run build" | ||
}, | ||
"peerDependencies": { | ||
"typescript": "^5.0.0", | ||
|