misc: more speed improvement on develop images building

This commit is contained in:
Andrey Antukh 2019-07-04 09:40:17 +02:00
parent d8e205ec25
commit d908cf566a
6 changed files with 27 additions and 11 deletions

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash
source ~/.bashrc
npm install
npm ci
npm run build:test || exit 1;
node ./target/tests/main

View file

@ -1,10 +1,11 @@
#!/usr/bin/env bash
source ~/.bashrc
npm install
npm ci
npm run dist:clean || exit 1;
npm run build:assets || exit 1;
npm run build:main || exit 1;
npm run build:view || exit 1;
npm run build:worker || exit 1;
npm run build:all || exit 1;
# npm run build:main || exit 1;
# npm run build:view || exit 1;
# npm run build:worker || exit 1;

View file

@ -1,10 +1,11 @@
#!/usr/bin/env bash
source ~/.bashrc
npm install
npm ci
npm run dist:clean || exit 1;
npm run dist:assets || exit 1;
npm run dist:main || exit 1;
npm run dist:view || exit 1;
npm run dist:worker || exit 1;
npm run dist:all || exit 1;
# npm run dist:main || exit 1;
# npm run dist:view || exit 1;
# npm run dist:worker || exit 1;