appimage: Use npm-ci instead of npm-install

This commit is contained in:
Mike Salvatore 2021-04-29 13:58:30 -04:00
parent 2856b85616
commit e58281b0f0
1 changed files with 2 additions and 2 deletions

View File

@ -203,11 +203,11 @@ generate_ssl_cert() {
build_frontend() {
pushd "$ISLAND_PATH/cc/ui" || handle_error
npm install sass-loader node-sass webpack --save-dev
npm update
log_message "Generating front end"
npm ci
npm run dist
popd || handle_error
remove_node_modules