@genesislcap/foundation-login 13.4.1 → 13.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -95,7 +95,7 @@ export const defaultLoginConfig = {
95
95
  defaultRedirectUrl: '/protected',
96
96
  omitRedirectUrls: ['/not-found', '/not-permitted'],
97
97
  sso: {
98
- identityProvidersPath: 'sso/list',
98
+ identityProvidersPath: 'gwf/sso/list',
99
99
  },
100
100
  };
101
101
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-login",
3
3
  "description": "Genesis Foundation Login",
4
- "version": "13.4.1",
4
+ "version": "13.6.0",
5
5
  "license": "SEE LICENSE IN license.txt",
6
6
  "main": "dist/esm/index.js",
7
7
  "types": "dist/foundation-login.d.ts",
@@ -37,7 +37,7 @@
37
37
  "dev:webpack": "cross-env NODE_ENV=development API_HOST=$npm_package_config_API_HOST DEFAULT_USER=$npm_package_config_DEFAULT_USER DEFAULT_PASSWORD=$npm_package_config_DEFAULT_PASSWORD webpack serve --open",
38
38
  "dev:webpack:https": "npm run dev:webpack -- --https",
39
39
  "serve": "serve dist -p $npm_package_config_PORT",
40
- "test": "npm run test:unit && npm run test:e2e",
40
+ "test_": "npm run test:unit && npm run test:e2e",
41
41
  "test:coverage": "c8 --include=src npm run test:unit",
42
42
  "test:coverage:report": "npm run test:coverage && c8 report --reporter=text-lcov > coverage.lcov",
43
43
  "test:coverage:report:nyc": "npm run test:unit:browser -- --cov && npx nyc report --reporter=html",
@@ -52,7 +52,7 @@
52
52
  "test:unit:watch": "watchlist src test -- npm run test:unit"
53
53
  },
54
54
  "devDependencies": {
55
- "@genesislcap/foundation-testing": "^13.4.1",
55
+ "@genesislcap/foundation-testing": "^13.6.0",
56
56
  "@microsoft/api-documenter": "^7.19.13",
57
57
  "@microsoft/api-extractor": "^7.31.1",
58
58
  "@module-federation/dashboard-plugin": "2.3.0",
@@ -95,10 +95,10 @@
95
95
  "webpack-merge": "^5.7.3"
96
96
  },
97
97
  "dependencies": {
98
- "@genesislcap/foundation-comms": "^13.4.1",
99
- "@genesislcap/foundation-ui": "^13.4.1",
100
- "@genesislcap/foundation-utils": "^13.4.1",
101
- "@genesislcap/foundation-zero": "^13.4.1",
98
+ "@genesislcap/foundation-comms": "^13.6.0",
99
+ "@genesislcap/foundation-ui": "^13.6.0",
100
+ "@genesislcap/foundation-utils": "^13.6.0",
101
+ "@genesislcap/foundation-zero": "^13.6.0",
102
102
  "@microsoft/fast-components": "^2.21.3",
103
103
  "@microsoft/fast-element": "^1.7.0",
104
104
  "@microsoft/fast-foundation": "^2.33.2",
@@ -111,5 +111,5 @@
111
111
  "publishConfig": {
112
112
  "access": "public"
113
113
  },
114
- "gitHead": "ae97683df00f4ac5e64be542b5b25b4a1f13b86a"
114
+ "gitHead": "402177e1b790f32912a0ae57301efe8724f3b92b"
115
115
  }
@@ -36,7 +36,7 @@ const config: PlaywrightTestConfig<Fixtures> = {
36
36
  },
37
37
  ],
38
38
  webServer: {
39
- command: 'npm run build:tsc && npm run build:webpack && npm run serve',
39
+ command: 'npm run dev',
40
40
  url: 'http://localhost:5030/',
41
41
  timeout: 120000,
42
42
  reuseExistingServer: !process.env.CI,