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.
1 parent 8973459 commit 0b6346aCopy full SHA for 0b6346a
.github/workflows/build.yml
@@ -28,7 +28,8 @@ jobs:
28
node-version: ${{ env.NODE_VER }}
29
registry-url: 'https://registry.npmjs.org'
30
31
- - run: ./scripts/build.sh
+ - name: Build Package
32
+ run: ./scripts/build.sh
33
34
- name: Is Release?
35
if: startswith(github.ref, 'refs/tags/v')
scripts/build.sh
@@ -13,7 +13,7 @@ echo "====================================================="
13
echo "Installing Dependencies"
14
echo "Note: if EEXIST: file already exists on tsc, run `npm uninstall -g tsc`"
15
npm install -g typescript
16
-npm install
+npm install > /dev/null
17
18
# Prepare build
19
echo "Preparing Build"
0 commit comments