aboutsummaryrefslogtreecommitdiff
path: root/internal/cmd
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2024-01-25 20:59:16 +0700
committerShulhan <ms@kilabit.info>2024-01-25 20:59:16 +0700
commit6535043e55fa510bde5b66085d4b88326004faee (patch)
treea0d39a436f84265e3aa91d5c92497bf15dd2ac2c /internal/cmd
parentfba06786185ee70bf6e3b558b930d1f4e3b97545 (diff)
downloadgorankusu-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.go4
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() {