diff options
author | Chocobozzz <me@florianbigard.com> | 2021-12-28 10:18:15 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-12-28 10:18:15 +0100 |
commit | 6627dbc957477aa32e21ed1bdc8cd72b928cd616 (patch) | |
tree | e6dbe45b7259cc01ff0255887d45d331bc81026f /scripts | |
parent | 52b356cfe257e8e0d357a498e87d9299c95cdbe5 (diff) | |
download | PeerTube-6627dbc957477aa32e21ed1bdc8cd72b928cd616.tar.gz PeerTube-6627dbc957477aa32e21ed1bdc8cd72b928cd616.tar.zst PeerTube-6627dbc957477aa32e21ed1bdc8cd72b928cd616.zip |
Move types package in packages/
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/ci.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/ci.sh b/scripts/ci.sh index 070a104cc..5b757d94b 100755 --- a/scripts/ci.sh +++ b/scripts/ci.sh | |||
@@ -40,9 +40,9 @@ findTestFiles () { | |||
40 | find $1 -type f -name "*.js" $exception | xargs echo | 40 | find $1 -type f -name "*.js" $exception | xargs echo |
41 | } | 41 | } |
42 | 42 | ||
43 | if [ "$1" = "types" ]; then | 43 | if [ "$1" = "types-package" ]; then |
44 | npm run generate-types-package | 44 | npm run generate-types-package |
45 | npm run tsc -- --noEmit --esModuleInterop types/tests/test.ts | 45 | npm run tsc -- --noEmit --esModuleInterop packages/types/tests/test.ts |
46 | elif [ "$1" = "client" ]; then | 46 | elif [ "$1" = "client" ]; then |
47 | npm run build | 47 | npm run build |
48 | 48 | ||