Commit 0ee53c71 authored by Yassine Doghri's avatar Yassine Doghri
Browse files

fix(bundle): update vite input files path + add `set -e` in bash scripts to fail if command fails

parent e10c071a
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -111,5 +111,5 @@ release:
    - js-dependencies
  only:
    - main
    - alpha
    - beta
    - alpha
+1 −0
Original line number Diff line number Diff line
#!/bin/bash
set -e

# install only production dependencies using the --no-dev option
composer install --no-dev --prefer-dist --no-ansi --no-interaction --no-progress --ignore-platform-reqs
+1 −0
Original line number Diff line number Diff line
#!/bin/bash
set -e

VERSION=$1
COMPOSER_VERSION=$(echo "$VERSION" | perl -pe 's/(?<=[alpha|beta])\.//g')
+1 −0
Original line number Diff line number Diff line
#!/bin/bash
set -e

# see https://github.com/conventional-changelog/commitlint/issues/885

+1 −0
Original line number Diff line number Diff line
#!/bin/bash
set -e

VERSION=$1

Loading