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 48baa63 commit 51a4cc5Copy full SHA for 51a4cc5
post-release.sh
@@ -21,9 +21,9 @@ if [ "$(git branch -lr | grep origin/develop -c)" -ge 1 ]; then
21
# to the TypeScript source.
22
src_value=$(jq -r ".matrix_src_$i" package.json)
23
if [ "$src_value" != "null" ]; then
24
- jq ".$i = .matrix_src_$i" package.json > package.json.new && mv package.json.new package.json
+ jq ".$i = .matrix_src_$i" package.json > package.json.new && mv package.json.new package.json && yarn prettier --write package.json
25
else
26
- jq "del(.$i)" package.json > package.json.new && mv package.json.new package.json
+ jq "del(.$i)" package.json > package.json.new && mv package.json.new package.json && yarn prettier --write package.json
27
fi
28
29
done
0 commit comments