scripts() fix prepare script (install all deps)

This commit is contained in:
Kamil Myśliwiec
2018-12-29 10:21:18 +01:00
parent ff2e310a18
commit 2a5e22e2c6

View File

@@ -1,5 +1,5 @@
# 1. Install all dependencies
for D in integration/*; do [ -d "${D}" ] && npm i; done
for D in integration/*/; do sh -c "cd ${D} && npm i"; done
# 2. Build fresh packages and move them to sample and integration directories
npm run build:dev &>/dev/null