This repository has been archived by the owner on Oct 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: exclude cli from typescript compilation
- Loading branch information
1 parent
23f0b49
commit e0d6bbc
Showing
2 changed files
with
9 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
"@darkflare/wjson": patch | ||
--- | ||
|
||
refactor: exclude cli from typescript compilation | ||
|
||
Exclude CLI file from TypeScript compilation to reduce package size. No change for users since the code is internal anyway. |
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 |
---|---|---|
|
@@ -19,6 +19,7 @@ | |
}, | ||
"exclude": [ | ||
"test", | ||
"types" | ||
"types", | ||
"src/bin" | ||
] | ||
} |