diff options
| author | Shulhan <ms@kilabit.info> | 2024-01-25 20:59:16 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2024-01-25 20:59:16 +0700 |
| commit | 6535043e55fa510bde5b66085d4b88326004faee (patch) | |
| tree | a0d39a436f84265e3aa91d5c92497bf15dd2ac2c /internal/cmd | |
| parent | fba06786185ee70bf6e3b558b930d1f4e3b97545 (diff) | |
| download | gorankusu-6535043e55fa510bde5b66085d4b88326004faee.tar.xz | |
internal/cmd/trunks: fix command to run TypeScript compiler
The correct options to run tsc on specific directory is "--project" not
"-b".
Diffstat (limited to 'internal/cmd')
| -rw-r--r-- | internal/cmd/trunks/main.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/cmd/trunks/main.go b/internal/cmd/trunks/main.go index a4d8cf5..9650274 100644 --- a/internal/cmd/trunks/main.go +++ b/internal/cmd/trunks/main.go @@ -22,8 +22,8 @@ import ( ) const ( - subCommandBuild = "build" - cmdTsc = "tsc -b _www" + subCommandBuild = `build` + cmdTsc = `tsc --project _www` ) func main() { |
