@genesislcap/foundation-login 14.0.0 → 14.1.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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-login",
3
3
  "description": "Genesis Foundation Login",
4
- "version": "14.0.0",
4
+ "version": "14.1.0",
5
5
  "license": "SEE LICENSE IN license.txt",
6
6
  "main": "dist/esm/index.js",
7
7
  "types": "dist/foundation-login.d.ts",
@@ -33,8 +33,9 @@
33
33
  "clean": "npm run clean:dist",
34
34
  "clean:dist": "node ../../../../build/clean dist tsconfig.build.tsbuildinfo",
35
35
  "copy-files": "copyfiles -u 1 src/**/*.{css,scss,ttf,jpg,png,svg} ./dist/esm",
36
- "dev": "npm run dev:webpack",
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",
36
+ "dev": "npm run dev:webpack -- --open",
37
+ "dev:no-open": "npm run dev:webpack -- --no-open",
38
+ "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",
38
39
  "dev:webpack:https": "npm run dev:webpack -- --https",
39
40
  "serve": "serve dist -p $npm_package_config_PORT",
40
41
  "test_": "npm run test:unit && npm run test:e2e",
@@ -43,6 +44,7 @@
43
44
  "test:coverage:report:nyc": "npm run test:unit:browser -- --cov && npx nyc report --reporter=html",
44
45
  "test:e2e": "npx playwright test --config=./playwright.config.ts",
45
46
  "test:e2e:debug": "npm run test:e2e -- --debug",
47
+ "test:e2e:ui": "npx playwright test --ui --config=./playwright.config.ts",
46
48
  "test:unit": "npm run test:unit:node",
47
49
  "test:unit:browser": "playwright-test \"./**/*.test.ts\" --runner uvu",
48
50
  "test:unit:browser:watch": "npm run test:unit:browser -- -w -d",
@@ -52,7 +54,7 @@
52
54
  "test:unit:watch": "watchlist src test -- npm run test:unit"
53
55
  },
54
56
  "devDependencies": {
55
- "@genesislcap/foundation-testing": "^14.0.0",
57
+ "@genesislcap/foundation-testing": "^14.1.0",
56
58
  "@microsoft/api-documenter": "^7.19.13",
57
59
  "@microsoft/api-extractor": "^7.31.1",
58
60
  "@module-federation/dashboard-plugin": "2.3.0",
@@ -95,10 +97,10 @@
95
97
  "webpack-merge": "^5.7.3"
96
98
  },
97
99
  "dependencies": {
98
- "@genesislcap/foundation-comms": "^14.0.0",
99
- "@genesislcap/foundation-ui": "^14.0.0",
100
- "@genesislcap/foundation-utils": "^14.0.0",
101
- "@genesislcap/foundation-zero": "^14.0.0",
100
+ "@genesislcap/foundation-comms": "^14.1.0",
101
+ "@genesislcap/foundation-ui": "^14.1.0",
102
+ "@genesislcap/foundation-utils": "^14.1.0",
103
+ "@genesislcap/foundation-zero": "^14.1.0",
102
104
  "@microsoft/fast-components": "^2.21.3",
103
105
  "@microsoft/fast-element": "^1.7.0",
104
106
  "@microsoft/fast-foundation": "^2.33.2",
@@ -110,5 +112,5 @@
110
112
  "publishConfig": {
111
113
  "access": "public"
112
114
  },
113
- "gitHead": "2ad7754109cc1e59fb1623f29fee3df6c14b43e2"
115
+ "gitHead": "90aa7ef5294ebb0b9017be35c1bdd4aa8eeb62af"
114
116
  }
@@ -36,7 +36,7 @@ const config: PlaywrightTestConfig<Fixtures> = {
36
36
  },
37
37
  ],
38
38
  webServer: {
39
- command: 'npm run dev',
39
+ command: 'npm run dev:no-open',
40
40
  url: 'http://localhost:5030/',
41
41
  timeout: 120000,
42
42
  reuseExistingServer: !process.env.CI,