Skip to content

Commit

Permalink
Fixed minor issue with AAD signout. Rolled back terser-webpack-plugin…
Browse files Browse the repository at this point in the history
… version to mitigate build issues. (#1392)
  • Loading branch information
azaslonov committed Jul 19, 2021
1 parent a8dc8e8 commit db41fa3
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 21 deletions.
49 changes: 31 additions & 18 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -8,7 +8,7 @@
"azure"
],
"engines": {
"node": ">=10.12"
"node": ">=14.17.0"
},
"scripts": {
"start": "webpack-dev-server --open --config webpack.develop.js",
Expand Down Expand Up @@ -50,7 +50,7 @@
"sass": "^1.34.0",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.0.0",
"terser-webpack-plugin": "^4.1.0",
"ts-loader": "^8.3.0",
"ts-node": "9.0.0",
"tslint": "^6.1.3",
Expand Down
2 changes: 1 addition & 1 deletion src/routing/aadSignoutRouteGuard.ts
Expand Up @@ -23,7 +23,7 @@ export class AadSignOutRouteGuard implements RouteGuard {
const config = await this.settingsProvider.getSetting<AadB2CClientConfig>(Constants.SettingNames.aadB2CClientConfig);

if (!config) {
return;
return true;
}

const msalConfig = {
Expand Down

0 comments on commit db41fa3

Please sign in to comment.