From 0a442996353c0b85bb6313e9905b5bcddb38c9aa Mon Sep 17 00:00:00 2001
From: 396296 <396296@mail.muni.cz>
Date: Mon, 14 Nov 2022 16:48:56 +0100
Subject: [PATCH] Add ngx dependency

---
 .gitlab-ci.yml | 22 ++++++++++++++++++++++
 VERSION.txt    |  2 ++
 package.json   |  1 +
 3 files changed, 25 insertions(+)
 create mode 100644 VERSION.txt

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 630c0f7..c1d775a 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 0000000..a9c73c4
--- /dev/null
+++ b/VERSION.txt
@@ -0,0 +1,2 @@
+14.0.0 Initial library version
+
diff --git a/package.json b/package.json
index 50be5d5..7f50eac 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",
-- 
GitLab