@genesislcap/seed-utils 14.436.0-FUI-2489.2 → 14.437.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/seed-utils",
3
3
  "description": "Seed utilities",
4
- "version": "14.436.0-FUI-2489.2",
4
+ "version": "14.437.0",
5
5
  "license": "SEE LICENSE IN license.txt",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -17,10 +17,10 @@
17
17
  "lint:fix": "genx lint --fix"
18
18
  },
19
19
  "devDependencies": {
20
- "@genesislcap/foundation-testing": "14.436.0-FUI-2489.2",
21
- "@genesislcap/genx": "14.436.0-FUI-2489.2",
22
- "@genesislcap/ts-builder": "14.436.0-FUI-2489.2",
23
- "@genesislcap/uvu-playwright-builder": "14.436.0-FUI-2489.2",
20
+ "@genesislcap/foundation-testing": "14.437.0",
21
+ "@genesislcap/genx": "14.437.0",
22
+ "@genesislcap/ts-builder": "14.437.0",
23
+ "@genesislcap/uvu-playwright-builder": "14.437.0",
24
24
  "@types/node": "^22.10.2",
25
25
  "@types/tmp": "^0.2.6",
26
26
  "edit-json-file": "^1.7.0",
@@ -34,5 +34,5 @@
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "gitHead": "16309f873a08dfa541589cd172482677ff5dfd20"
37
+ "gitHead": "c30c777f0ab5e45f4e931a9cc1200ac85bcace35"
38
38
  }
@@ -1,112 +1,116 @@
1
1
  {
2
- "name": "mock-seed",
3
- "description": "",
4
- "version": "1.0.0",
5
- "private": true,
6
- "license": "UNLICENSED",
7
- "config": {
8
- "API_HOST": "ws://localhost:9064",
9
- "PORT": 6060,
10
- "ENABLE_SSO": false
11
- },
12
- "genx": {
13
- "app": {
14
- "rootElement": "mockseed-root"
2
+ "name": "mock-seed",
3
+ "description": "",
4
+ "version": "1.0.0",
5
+ "private": true,
6
+ "license": "UNLICENSED",
7
+ "config": {
8
+ "API_HOST": "ws://localhost:9064",
9
+ "PORT": 6060,
10
+ "ENABLE_SSO": false
15
11
  },
16
- "federation": {
17
- "remotes": [
18
- "@genesislcap/foundation-zero"
12
+ "genx": {
13
+ "app": {
14
+ "rootElement": "mockseed-root"
15
+ },
16
+ "federation": {
17
+ "remotes": [
18
+ "@genesislcap/foundation-zero"
19
+ ]
20
+ }
21
+ },
22
+ "scripts": {
23
+ "baseline": "npm run clean && npm run bootstrap",
24
+ "bootstrap": "npm install --no-fund --no-audit",
25
+ "bootstrap:ci": "npm ci --no-fund --no-audit",
26
+ "build": "genx build -e ENABLE_SSO",
27
+ "build:stats": "genx analyze",
28
+ "clean": "genx clean dist node_modules",
29
+ "dev": "genx dev -b webpack -e API_HOST,ENABLE_SSO",
30
+ "dev:docker": "npm run dev -- --host 0.0.0.0",
31
+ "dev:intellij": "genx dev -e ENABLE_SSO",
32
+ "dev:no-open": "npm run dev -- --no-open",
33
+ "dev:https": "npm run dev -- --https",
34
+ "dev:webpack": "npm run dev -- -b webpack",
35
+ "dsconfig": "dsconfig --path src/styles/design-tokens.json",
36
+ "git:setup": "cd .. && npx --yes husky install",
37
+ "lint": "genx lint --profile",
38
+ "lint:fix": "genx lint --fix",
39
+ "lint:eslint": "genx lint -l eslint --profile",
40
+ "lint:stylelint": "genx lint -l stylelint",
41
+ "serve": "genx serve",
42
+ "test": "genx test",
43
+ "test:coverage": "genx test --coverage",
44
+ "test:unit:watch": "genx test --watch"
45
+ },
46
+ "husky": {
47
+ "hooks": {
48
+ "pre-commit": "lint-staged"
49
+ }
50
+ },
51
+ "lint-staged": {
52
+ "*.{ts,js}": [
53
+ "eslint"
54
+ ],
55
+ "*.styles.ts": [
56
+ "stylelint"
19
57
  ]
58
+ },
59
+ "eslintConfig": {
60
+ "extends": "@genesislcap/eslint-config"
61
+ },
62
+ "stylelint": {
63
+ "extends": "@genesislcap/stylelint-config"
64
+ },
65
+ "prettier": "@genesislcap/prettier-config",
66
+ "devDependencies": {
67
+ "@genesislcap/design-system-configurator": "14.146.1",
68
+ "@genesislcap/foundation-testing": "14.146.1",
69
+ "@genesislcap/genx": "14.146.1",
70
+ "husky": "^7.0.4",
71
+ "lint-prepush": "^2.2.1",
72
+ "lint-staged": "^12.4.1"
73
+ },
74
+ "dependencies": {
75
+ "@genesislcap/foundation-comms": "14.139.0",
76
+ "@genesislcap/foundation-entity-management": "14.139.0",
77
+ "@genesislcap/foundation-events": "14.139.0",
78
+ "@genesislcap/foundation-forms": "14.139.0",
79
+ "@genesislcap/foundation-header": "14.139.0",
80
+ "@genesislcap/foundation-inbox": "14.139.0",
81
+ "@genesislcap/foundation-layout": "14.139.0",
82
+ "@genesislcap/foundation-logger": "14.139.0",
83
+ "@genesislcap/foundation-login": "14.139.0",
84
+ "@genesislcap/foundation-shell": "14.139.0",
85
+ "@genesislcap/foundation-store": "14.139.0",
86
+ "@genesislcap/foundation-ui": "14.139.0",
87
+ "@genesislcap/foundation-utils": "14.139.0",
88
+ "@genesislcap/foundation-zero": "14.139.0",
89
+ "@genesislcap/foundation-zero-grid-pro": "14.139.0",
90
+ "@genesislcap/g2plot-chart": "14.139.0",
91
+ "@microsoft/fast-components": "2.30.6",
92
+ "@microsoft/fast-element": "1.14.0",
93
+ "@microsoft/fast-foundation": "2.50.0",
94
+ "@microsoft/fast-router": "0.4.8",
95
+ "@microsoft/fast-web-utilities": "5.4.1",
96
+ "rxjs": "^7.5.4"
97
+ },
98
+ "overrides": {
99
+ "@genesislcap/foundation-comms": "14.139.0",
100
+ "@genesislcap/foundation-entity-management": "14.139.0",
101
+ "@genesislcap/foundation-events": "14.139.0",
102
+ "@genesislcap/foundation-forms": "14.139.0",
103
+ "@genesislcap/foundation-header": "14.139.0",
104
+ "@genesislcap/foundation-inbox": "14.139.0",
105
+ "@genesislcap/foundation-layout": "14.139.0",
106
+ "@genesislcap/foundation-logger": "14.139.0",
107
+ "@genesislcap/foundation-login": "14.139.0",
108
+ "@genesislcap/foundation-shell": "14.139.0",
109
+ "@genesislcap/foundation-store": "14.139.0",
110
+ "@genesislcap/foundation-ui": "14.139.0",
111
+ "@genesislcap/foundation-utils": "14.139.0",
112
+ "@genesislcap/foundation-zero": "14.139.0",
113
+ "@genesislcap/foundation-zero-grid-pro": "14.139.0",
114
+ "@genesislcap/g2plot-chart": "14.139.0"
20
115
  }
21
- },
22
- "scripts": {
23
- "baseline": "npm run clean && npm run bootstrap",
24
- "bootstrap": "npm install --no-fund --no-audit",
25
- "bootstrap:ci": "npm ci --no-fund --no-audit",
26
- "build": "genx build -e ENABLE_SSO",
27
- "build:stats": "genx analyze",
28
- "clean": "genx clean dist node_modules",
29
- "dev": "genx dev -b webpack -e API_HOST,ENABLE_SSO",
30
- "dev:docker": "npm run dev -- --host 0.0.0.0",
31
- "dev:intellij": "genx dev -e ENABLE_SSO",
32
- "dev:no-open": "npm run dev -- --no-open",
33
- "dev:https": "npm run dev -- --https",
34
- "dev:webpack": "npm run dev -- -b webpack",
35
- "dsconfig": "dsconfig --path src/styles/design-tokens.json",
36
- "git:setup": "cd .. && npx --yes husky install",
37
- "lint": "genx lint --profile",
38
- "lint:fix": "genx lint --fix",
39
- "lint:eslint": "genx lint -l eslint --profile",
40
- "lint:stylelint": "genx lint -l stylelint",
41
- "serve": "genx serve",
42
- "test": "genx test",
43
- "test:coverage": "genx test --coverage",
44
- "test:unit:watch": "genx test --watch"
45
- },
46
- "husky": {
47
- "hooks": {
48
- "pre-commit": "lint-staged"
49
- }
50
- },
51
- "lint-staged": {
52
- "*.{ts,js}": [
53
- "eslint"
54
- ],
55
- "*.styles.ts": [
56
- "stylelint"
57
- ]
58
- },
59
- "stylelint": {
60
- "extends": "@genesislcap/stylelint-config"
61
- },
62
- "devDependencies": {
63
- "@genesislcap/design-system-configurator": "14.146.1",
64
- "@genesislcap/foundation-testing": "14.146.1",
65
- "@genesislcap/genx": "14.146.1",
66
- "husky": "^7.0.4",
67
- "lint-prepush": "^2.2.1",
68
- "lint-staged": "^12.4.1"
69
- },
70
- "dependencies": {
71
- "@genesislcap/foundation-comms": "14.139.0",
72
- "@genesislcap/foundation-entity-management": "14.139.0",
73
- "@genesislcap/foundation-events": "14.139.0",
74
- "@genesislcap/foundation-forms": "14.139.0",
75
- "@genesislcap/foundation-header": "14.139.0",
76
- "@genesislcap/foundation-inbox": "14.139.0",
77
- "@genesislcap/foundation-layout": "14.139.0",
78
- "@genesislcap/foundation-logger": "14.139.0",
79
- "@genesislcap/foundation-login": "14.139.0",
80
- "@genesislcap/foundation-shell": "14.139.0",
81
- "@genesislcap/foundation-store": "14.139.0",
82
- "@genesislcap/foundation-ui": "14.139.0",
83
- "@genesislcap/foundation-utils": "14.139.0",
84
- "@genesislcap/foundation-zero": "14.139.0",
85
- "@genesislcap/foundation-zero-grid-pro": "14.139.0",
86
- "@genesislcap/g2plot-chart": "14.139.0",
87
- "@microsoft/fast-components": "2.30.6",
88
- "@microsoft/fast-element": "1.14.0",
89
- "@microsoft/fast-foundation": "2.50.0",
90
- "@microsoft/fast-router": "0.4.8",
91
- "@microsoft/fast-web-utilities": "5.4.1",
92
- "rxjs": "^7.5.4"
93
- },
94
- "overrides": {
95
- "@genesislcap/foundation-comms": "14.139.0",
96
- "@genesislcap/foundation-entity-management": "14.139.0",
97
- "@genesislcap/foundation-events": "14.139.0",
98
- "@genesislcap/foundation-forms": "14.139.0",
99
- "@genesislcap/foundation-header": "14.139.0",
100
- "@genesislcap/foundation-inbox": "14.139.0",
101
- "@genesislcap/foundation-layout": "14.139.0",
102
- "@genesislcap/foundation-logger": "14.139.0",
103
- "@genesislcap/foundation-login": "14.139.0",
104
- "@genesislcap/foundation-shell": "14.139.0",
105
- "@genesislcap/foundation-store": "14.139.0",
106
- "@genesislcap/foundation-ui": "14.139.0",
107
- "@genesislcap/foundation-utils": "14.139.0",
108
- "@genesislcap/foundation-zero": "14.139.0",
109
- "@genesislcap/foundation-zero-grid-pro": "14.139.0",
110
- "@genesislcap/g2plot-chart": "14.139.0"
111
116
  }
112
- }