diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 630c0f7ba55638530227483f433d500971a7a2f4..c1d775a06830dcf0784bad23c9aafe0ee099c3f5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -33,6 +33,28 @@ codeStyle: refs: - master +buildExampleApp: + stage: build + cache: + key: $CI_COMMIT_REF_SLUG-$CI_PROJECT_DIR + paths: + - .npm/ + policy: pull + script: + - npm run build-example-app + only: + - triggers + - branches + artifacts: + paths: + - ./dist + expire_in: 1 hour + except: + changes: + - "CHANGELOG.md" + refs: + - master + buildLibrary: stage: build cache: diff --git a/VERSION.txt b/VERSION.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9c73c427865c61f3174e815db4b1053c34a1c57 --- /dev/null +++ b/VERSION.txt @@ -0,0 +1,2 @@ +14.0.0 Initial library version + diff --git a/package.json b/package.json index 50be5d513876ed9222cd7c6012d72ba9b45be5ad..7f50eacae7ab4a6c9a689b47bf5541b58e1100e2 100644 --- a/package.json +++ b/package.json @@ -43,6 +43,7 @@ "angular-oauth2-oidc": "^13.0.1", "angular-oauth2-oidc-jwks": "^13.0.1", "core-js": "^3.23.2", + "ngx-indexed-db": "^11.0.2", "d3": "^7.4.4", "rxjs": "~7.5.5", "tslib": "^2.4.0",