We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 18a7281 + d90ced8 commit 582a042Copy full SHA for 582a042
scripts/build.sh
@@ -1,4 +1,8 @@
1
#!/bin/bash
2
+
3
+# Stop on first errror in execustion
4
+set -e
5
6
echo "====================================================="
7
echo "==================== Dapr JS SDK ===================="
8
@@ -20,7 +24,7 @@ mkdir build/
20
24
echo "Building Library"
21
25
npm install > /dev/null
22
26
npm run lint > /dev/null
23
-tsc --outDir ./build/ > /dev/null
27
+tsc --outDir ./build/
28
29
# Prepare Publish
30
echo "Preparing Publish"
0 commit comments