Skip to content

Commit 79c1a78

Browse files
committed
2.3.0
1 parent a484b56 commit 79c1a78

File tree

91 files changed

+11101
-1549
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+11101
-1549
lines changed

config/env/EnvSettings.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,6 @@ export abstract class EnvSettings {
2828
abstract MATOMO_SITEID: number;
2929

3030
abstract envName: string;
31+
32+
abstract DCAT_BUNDLE_PATH: string;
3133
}

config/env/Settings.Dev.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ export class Settings_Dev extends EnvSettings {
3232

3333
CANONICAL_URL = "http://localhost:8080";
3434

35+
DCAT_BUNDLE_PATH = "/dcatse_bundle_2022-02-20.json";
36+
3537
MATOMO_SITEID = 6;
3638

3739
envName = 'dev';

config/env/Settings.Prod.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ export class Settings_Prod extends EnvSettings {
2626

2727
CANONICAL_URL = "https://www.dataportal.se";
2828

29+
DCAT_BUNDLE_PATH = "https://dataportal.azureedge.net/cdn/dcatse-bundle-2022-02-20.json";
30+
2931
MATOMO_SITEID = 4;
3032

3133
envName = 'prod';

config/env/Settings.Sandbox.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ export class Settings_Sandbox extends EnvSettings {
2626

2727
CANONICAL_URL = "https://www-sandbox.dataportal.se";
2828

29+
DCAT_BUNDLE_PATH = "https://dataportal.azureedge.net/cdn/dcatse-bundle-2022-02-20.json";
30+
2931
MATOMO_SITEID = -1;
3032

3133
envName = 'sandbox';

config/env/Settings.Test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ export class Settings_Test extends EnvSettings {
2626

2727
CANONICAL_URL = "https://digg-test-dataportal.azurewebsites.net";
2828

29+
DCAT_BUNDLE_PATH = "https://dataportal.azureedge.net/cdn/dcatse-bundle-2022-02-20.json";
30+
2931
MATOMO_SITEID = 5;
3032

3133
envName = 'test';

package.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"tsconfig-paths-webpack-plugin": "^3.2.0",
6767
"tslint": "^5.20.0",
6868
"typescript": "^3.6.4",
69-
"webpack": "^4.41.1",
69+
"webpack": "4.41.1",
7070
"webpack-bundle-analyzer": "^3.5.2",
7171
"webpack-command": "^0.5.0",
7272
"webpack-manifest-plugin": "^2.2.0",
@@ -108,10 +108,7 @@
108108
"emotion-server": "10.0.17",
109109
"emotion-theming": "^10.0.19",
110110
"express-basic-auth": "^1.2.0",
111-
"feather-icons-react": "^0.4.3",
112111
"focus-trap-react": "^6.0.0",
113-
"formik": "^1.5.8",
114-
"formik-persist": "^1.1.0",
115112
"glob-parent": "5.1.2",
116113
"graphql": "^15.0.0",
117114
"helmet": "^3.21.2",
@@ -129,11 +126,13 @@
129126
"mini-css-extract-plugin": "^0.8.0",
130127
"minimist": "1.2.3",
131128
"moment": "^2.25.3",
132-
"node-fetch": "2.6.5",
129+
"nanoid": "3.1.31",
130+
"node-fetch": "2.6.7",
133131
"node-notifier": "8.0.1",
134132
"node-sass": "4.14.0",
135133
"nth-check": "2.0.1",
136134
"performant-array-to-tree": "^1.7.1",
135+
"postcss": "8.2.13",
137136
"postcss-modules-extract-imports": "3.0.0",
138137
"prismjs": "1.25.0",
139138
"qss": "^2.0.3",
@@ -156,7 +155,7 @@
156155
"sitemap": "^6.2.0",
157156
"ssri": "8.0.1",
158157
"style-loader": "^1.0.0",
159-
"swagger-ui-react": "3.52.5",
158+
"swagger-ui-react": "4.1.3",
160159
"tar": "4.4.18",
161160
"terser-webpack-plugin": "^2.3.2",
162161
"trim-newlines": "3.0.1",
@@ -172,7 +171,7 @@
172171
"**/**/mem": "^4.0.0",
173172
"**/**/yargs-parser": "^13.1.2",
174173
"**/**/serialize-javascript": "^3.1.0",
175-
"**/**/node-fetch": "^2.6.5",
174+
"**/**/node-fetch": "^2.6.7",
176175
"**/**/trim-newlines": "^3.0.1",
177176
"**/**/tar": "^4.4.18",
178177
"**/**/glob-parent": "^5.1.2",

0 commit comments

Comments
 (0)