Commit 2403875f authored by Jeremy Morrell's avatar Jeremy Morrell Committed by Jeremy Morrell

Remove yarn warning

parent 17547157
...@@ -53,7 +53,6 @@ handle_failure() { ...@@ -53,7 +53,6 @@ handle_failure() {
warn_angular_resolution "$LOG_FILE" warn_angular_resolution "$LOG_FILE"
warn_missing_devdeps "$LOG_FILE" warn_missing_devdeps "$LOG_FILE"
warn_econnreset "$LOG_FILE" warn_econnreset "$LOG_FILE"
warn_young_yarn "$LOG_FILE"
failure_message | output "$LOG_FILE" failure_message | output "$LOG_FILE"
} }
trap 'handle_failure' ERR trap 'handle_failure' ERR
......
...@@ -310,13 +310,6 @@ warn_old_npm_lockfile() { ...@@ -310,13 +310,6 @@ warn_old_npm_lockfile() {
fi fi
} }
warn_young_yarn() {
if $YARN; then
warning "This project was built with yarn, which is new and under development. Some projects can still be built more reliably with npm" "https://devcenter.heroku.com/articles/nodejs-support#build-behavior"
mcount 'warnings.yarn.young'
fi
}
warn_untracked_dependencies() { warn_untracked_dependencies() {
local log_file="$1" local log_file="$1"
if grep -qi 'gulp: not found' "$log_file" || grep -qi 'gulp: command not found' "$log_file"; then if grep -qi 'gulp: not found' "$log_file" || grep -qi 'gulp: command not found' "$log_file"; then
......
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