summaryrefslogtreecommitdiffstats
path: root/webapp
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-05-24 17:27:41 -0400
committerChristopher Speller <crspeller@gmail.com>2017-05-24 17:27:41 -0400
commitf47dd2d36dcf468ed96c7429ce66bfd8dc0bfc14 (patch)
treea8bb50aad70c71f84596aeb953e6eda5b64e447c /webapp
parentea390d7826de983cebb424a11037119db1eff84d (diff)
downloadchat-f47dd2d36dcf468ed96c7429ce66bfd8dc0bfc14.tar.gz
chat-f47dd2d36dcf468ed96c7429ce66bfd8dc0bfc14.tar.bz2
chat-f47dd2d36dcf468ed96c7429ce66bfd8dc0bfc14.zip
Clean yarn cache when cleaning webapp (#6490)
* Clean yarn cache when cleaning webapp * Add cache clean to .yarninstall target
Diffstat (limited to 'webapp')
-rw-r--r--webapp/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/webapp/Makefile b/webapp/Makefile
index c274cafce..4ab37e55f 100644
--- a/webapp/Makefile
+++ b/webapp/Makefile
@@ -13,6 +13,7 @@ test: .yarninstall
.yarninstall: package.json
@echo Getting dependencies using yarn
+ yarn cache clean
yarn install --pure-lockfile
touch $@
@@ -52,3 +53,5 @@ clean:
rm -rf dist
rm -rf node_modules
rm -f .yarninstall
+
+ yarn cache clean