chore(tool): fallar en errores
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
376b23b93e
commit
0e82470a86
1 changed files with 3 additions and 3 deletions
6
tool
6
tool
|
@ -1,14 +1,14 @@
|
|||
#!/bin/sh
|
||||
|
||||
build_ts() {
|
||||
./node_modules/.bin/esbuild compilar.ts --target=node18 --outdir=build.js --sourcemap
|
||||
./node_modules/.bin/esbuild compilar.ts --target=node18 --outdir=build.js --sourcemap || exit $?
|
||||
}
|
||||
build() {
|
||||
build_ts
|
||||
node --enable-source-maps build.js/compilar.js
|
||||
node --enable-source-maps build.js/compilar.js || exit $?
|
||||
}
|
||||
check() {
|
||||
./node_modules/.bin/tsc --noEmit
|
||||
./node_modules/.bin/tsc --noEmit || exit $?
|
||||
}
|
||||
refresh_feed() {
|
||||
echo "Refreshing $1"
|
||||
|
|
Reference in a new issue