Use ttsc instead of tsc

This commit is contained in:
Jerko Steiner 2019-07-31 07:19:22 +08:00
parent 72de6ed106
commit 7dd9497514
4 changed files with 6 additions and 6 deletions

View File

@ -9,10 +9,10 @@ comments:
cp packages/comments-server/build/server.min.js build/comments/ cp packages/comments-server/build/server.min.js build/comments/
build_ts: build_ts:
tsc -b packages/ ttsc -b packages/
watch_ts: watch_ts:
tsc --build packages/ --watch --preserveWatchOutput ttsc --build packages/ --watch --preserveWatchOutput
add: add:
mkdir packages/$(name) mkdir packages/$(name)

View File

@ -1,5 +1,5 @@
build: build:
tsc ttsc
clean: clean:
rm -rf lib/ rm -rf lib/

View File

@ -1,8 +1,8 @@
build: build:
tsc ttsc
esm: esm:
tsc -p tsconfig.esm.json ttsc -p tsconfig.esm.json
clean: clean:
rm -rf lib/ rm -rf lib/

View File

@ -2,7 +2,7 @@ server := src/bootstrap.ts
typeorm := ts-node ../../node_modules/.bin/typeorm typeorm := ts-node ../../node_modules/.bin/typeorm
build: build:
tsc --build ./ ttsc --build ./
orm: orm:
$typeorm $args $typeorm $args