Commit f4ddf205 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'winh-yarn-integrity-check-output' into 'master'

Improve output for yarn integrity check

See merge request gitlab-org/gitlab-ce!32569
parents bc26349b 015efb0f
{
"private": true,
"scripts": {
"check-dependencies": "yarn check --integrity",
"check-dependencies": "scripts/frontend/check_dependencies.sh",
"clean": "rm -rf public/assets tmp/cache/*-loader",
"dev-server": "NODE_OPTIONS=\"--max-old-space-size=3584\" nodemon -w 'config/webpack.config.js' --exec 'webpack-dev-server --config config/webpack.config.js'",
"eslint": "eslint --max-warnings 0 --report-unused-disable-directives --ext .js,.vue .",
......
#!/usr/bin/env bash
if ! yarn check --integrity 2>&1 > /dev/null
then
echo
echo " $(tput setaf 1)yarn check --integrity$(tput sgr0) failed!"
echo " Your dependencies probably don't match the yarn.lock file."
echo " Please run $(tput setaf 2)yarn install$(tput sgr0) and try again."
echo
exit 1
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