Skip to content

Commit 582a042

Browse files
Merge pull request #182 from lechnerc77/fix-build-issue177
Fix for build script
2 parents 18a7281 + d90ced8 commit 582a042

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scripts/build.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/bin/bash
2+
3+
# Stop on first errror in execustion
4+
set -e
5+
26
echo "====================================================="
37
echo "==================== Dapr JS SDK ===================="
48
echo "====================================================="
@@ -20,7 +24,7 @@ mkdir build/
2024
echo "Building Library"
2125
npm install > /dev/null
2226
npm run lint > /dev/null
23-
tsc --outDir ./build/ > /dev/null
27+
tsc --outDir ./build/
2428

2529
# Prepare Publish
2630
echo "Preparing Publish"

0 commit comments

Comments
 (0)