Skip to content

Commit a4ec9e9

Browse files
authoredMar 17, 2025··
Remove silent flag (#578)
1 parent cba0414 commit a4ec9e9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎scripts/publish

+5-5
Original file line numberDiff line numberDiff line change
@@ -171,21 +171,21 @@ if ! grep -q 'working tree clean' <<< "$GIT_STATUS"; then
171171
fi
172172

173173
echo "Installing dependencies according to lockfile"
174-
yarn -s install --frozen-lockfile
174+
yarn install --frozen-lockfile
175175

176176
echo "Running tests"
177-
yarn -s run test
177+
yarn run test
178178

179179
if [ -n "$PREID" ]; then
180180
echo "Bumping package.json $RELEASE_TYPE, $PREID version and tagging commit"
181-
yarn -s version --$RELEASE_TYPE --preid $PREID
181+
yarn version --$RELEASE_TYPE --preid $PREID
182182
else
183183
echo "Bumping package.json $RELEASE_TYPE version and tagging commit"
184-
yarn -s version --$RELEASE_TYPE
184+
yarn version --$RELEASE_TYPE
185185
fi
186186

187187
echo "Building"
188-
yarn -s run build
188+
yarn run build
189189

190190
verify_commit_is_signed
191191

0 commit comments

Comments
 (0)
Please sign in to comment.