mirror of
https://gitlab.com/openlp/web-remote.git
synced 2024-12-22 03:22:48 +00:00
Merge branch 'dont-install-dev-deps' into 'master'
Don't install dev dependencies when building See merge request openlp/web-remote!103
This commit is contained in:
commit
fcc1f543d0
@ -33,7 +33,10 @@ test:
|
|||||||
build-branch:
|
build-branch:
|
||||||
stage: build
|
stage: build
|
||||||
script:
|
script:
|
||||||
- yarn install
|
# Temporarily install npm manually until we get it added to the runner image
|
||||||
|
- apk add npm
|
||||||
|
- yarn install --production
|
||||||
|
- npm install @angular/cli
|
||||||
- yarn build --no-progress --configuration production --aot
|
- yarn build --no-progress --configuration production --aot
|
||||||
- export APP_VERSION=`git describe --dirty --tags --long --match '*[0-9]*'`
|
- export APP_VERSION=`git describe --dirty --tags --long --match '*[0-9]*'`
|
||||||
- 'echo "window.appVersion = \"$APP_VERSION\";" > dist/web-remote/assets/version.js'
|
- 'echo "window.appVersion = \"$APP_VERSION\";" > dist/web-remote/assets/version.js'
|
||||||
@ -46,7 +49,10 @@ build-branch:
|
|||||||
build-tag:
|
build-tag:
|
||||||
stage: build
|
stage: build
|
||||||
script:
|
script:
|
||||||
- yarn install
|
# Temporarily install npm manually until we get it added to the runner image
|
||||||
|
- apk add npm
|
||||||
|
- yarn install --production
|
||||||
|
- npm install @angular/cli
|
||||||
- yarn build --no-progress --configuration production --aot
|
- yarn build --no-progress --configuration production --aot
|
||||||
- 'echo "window.appVersion = \"$CI_COMMIT_TAG\";" > dist/web-remote/assets/version.js'
|
- 'echo "window.appVersion = \"$CI_COMMIT_TAG\";" > dist/web-remote/assets/version.js'
|
||||||
artifacts:
|
artifacts:
|
||||||
|
Loading…
Reference in New Issue
Block a user