Commit 5018f519 authored by Hunter Loftis's avatar Hunter Loftis

move yarn check from failure to warning

parent 397acbc7
...@@ -35,8 +35,8 @@ yarn_node_modules() { ...@@ -35,8 +35,8 @@ yarn_node_modules() {
if $(yarn check 1>/dev/null); then if $(yarn check 1>/dev/null); then
echo "yarn.lock and package.json match" echo "yarn.lock and package.json match"
else else
error "yarn.lock is outdated. run \`yarn install\`, commit the updated \`yarn.lock\`, and redeploy" echo "yarn.lock is outdated"
return 1 warning "yarn.lock is outdated." "run \`yarn install\`, commit the updated \`yarn.lock\`, and redeploy"
fi fi
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment