Skip to content

Commit 05610a9

Browse files
Merge pull request #1692 from KelvinTegelaar/dev
Dev to release
2 parents fb47935 + 651033e commit 05610a9

Some content is hidden

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

42 files changed

+27470
-14626
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ PORT=3000
22
CHOKIDAR_USEPOLLING=true
33
BROWSER=none
44
GENERATE_SOURCEMAP=false
5-
WDS_SOCKET_PORT=0
5+
WDS_SOCKET_PORT=3000

.vscode/cert.crt

Lines changed: 0 additions & 23 deletions
This file was deleted.

.vscode/key.key

Lines changed: 0 additions & 28 deletions
This file was deleted.

.vscode/launch.json

Lines changed: 8 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -9,39 +9,30 @@
99
"cwd": "${file}"
1010
},
1111
{
12-
"command": "npm run start-api",
13-
"name": "Run emulator",
12+
"command": "npm run start-swa",
13+
"name": "Run Emulator",
1414
"request": "launch",
1515
"type": "node-terminal"
1616
},
1717
{
1818
"command": "npm start",
19-
"name": "Run frontend",
19+
"name": "Run Frontend",
2020
"request": "launch",
2121
"type": "node-terminal",
22-
"preLaunchTask": "RunAllTasks",
22+
"preLaunchTask": "Run All Tasks",
2323
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"]
2424
},
2525
{
26-
"name": "Launch Edge",
26+
"type": "chrome",
2727
"request": "launch",
28-
"type": "pwa-msedge",
29-
"url": "https://localhost:4280",
30-
"webRoot": "${workspaceFolder}"
31-
},
32-
{
33-
"name": "Attach to Edge",
34-
"port": 9222,
35-
"request": "attach",
36-
"type": "pwa-msedge",
37-
"urlFilter": "https://localhost:4280/*",
38-
"webRoot": "${workspaceFolder}"
28+
"name": "Launch Chrome Debugger",
29+
"url": "http://localhost:4280"
3930
}
4031
],
4132
"compounds": [
4233
{
4334
"name": "Launch it all 🚀",
44-
"configurations": ["Run frontend", "Run emulator"]
35+
"configurations": ["Run Frontend", "Run Emulator"]
4536
}
4637
]
4738
}

.vscode/tasks.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"version": "2.0.0",
33
"tasks": [
44
{
5-
"label": "RunAllTasks",
6-
"dependsOn": ["RunAPI", "RunAzurite"]
5+
"label": "Run All Tasks",
6+
"dependsOn": ["Run API", "Run Azurite"]
77
},
88
{
9-
"label": "RunAzurite",
9+
"label": "Run Azurite",
1010
"type": "shell",
11-
"command": "azurite",
11+
"command": "azurite --location ../",
1212
"isBackground": true,
1313
"problemMatcher": {
1414
"pattern": [
@@ -27,7 +27,7 @@
2727
}
2828
},
2929
{
30-
"label": "RunAPI",
30+
"label": "Run API",
3131
"type": "shell",
3232
"command": "func start --verbose",
3333
"isBackground": true,

package-lock.json

Lines changed: 9 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"test": "react-scripts test",
2222
"test:cov": "npm test -- --coverage --watchAll=false",
2323
"test:debug": "react-scripts --inspect-brk test --runInBand",
24-
"start-api": "swa start --ssl --ssl-cert ./.vscode/cert.crt --ssl-key ./.vscode/key.key --swa-config-location .vscode http://localhost:3000 --api-location http://localhost:7071",
24+
"start-swa": "swa start --swa-config-location .vscode http://127.0.0.1:3000 --api-location http://localhost:7071",
2525
"prepare": "husky install"
2626
},
2727
"config": {
@@ -92,13 +92,13 @@
9292
"prettier": "2.4.1",
9393
"react-scripts": "^5.0.0",
9494
"redux-immutable-state-invariant": "^2.1.0",
95-
"sass": "^1.44",
95+
"sass": "^1.64.2",
9696
"stylelint": "^14.3.0",
9797
"stylelint-config-sass-guidelines": "^9.0.1",
9898
"stylelint-order": "^5.0.0"
9999
},
100100
"engines": {
101-
"node": "16",
101+
"node": "18",
102102
"npm": ">=7"
103103
}
104104
}

public/version_latest.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.8.0
1+
4.0.0

src/_nav.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ const _nav = [
129129
},
130130
{
131131
component: CNavItem,
132-
name: 'Scheduled Alerts',
132+
name: 'Alerts Configuration',
133133
to: '/tenant/administration/alertsqueue',
134134
},
135135
{
@@ -156,6 +156,11 @@ const _nav = [
156156
name: 'Application Approval',
157157
to: '/tenant/administration/appapproval',
158158
},
159+
{
160+
component: CNavItem,
161+
name: 'Geo IP Lookup',
162+
to: '/tenant/tools/geoiplookup',
163+
},
159164
{
160165
component: CNavItem,
161166
name: 'Tenant Lookup',
Loading

0 commit comments

Comments
 (0)