@genesislcap/blank-app-seed 5.4.0-prerelease.2 → 5.4.0-prerelease.4
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/.genx/package.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [5.4.0-prerelease.4](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.4.0-prerelease.3...v5.4.0-prerelease.4) (2025-08-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* correct args passing [FUI-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) (#496) f3daa00
|
|
9
|
+
|
|
10
|
+
## [5.4.0-prerelease.3](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.4.0-prerelease.2...v5.4.0-prerelease.3) (2025-08-05)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* set default baseuri to allow local running bdd tests GENC-1171 (#495) 86e45c8
|
|
16
|
+
|
|
3
17
|
## [5.4.0-prerelease.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v5.4.0-prerelease.1...v5.4.0-prerelease.2) (2025-07-28)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
browser=chrome
|
|
3
3
|
#ENVIRONMENT
|
|
4
4
|
defaultHost=http://localhost:6060/
|
|
5
|
-
baseURI=
|
|
5
|
+
baseURI=sm
|
|
6
6
|
#PATH FOR RESOURCES
|
|
7
7
|
resourcesPath=src/test/resources
|
|
8
8
|
#PATH FOR PAYLOADS
|
|
@@ -20,4 +20,4 @@ inputPath=src/test/resources/5-input
|
|
|
20
20
|
#API MAXIMUM RESPONSE TIME
|
|
21
21
|
apiMaxResponseTime=7000
|
|
22
22
|
#HEALTH CHECK TASK MAXIMUM TIME TO EXECUTE
|
|
23
|
-
healthCheckMaxWait=10
|
|
23
|
+
healthCheckMaxWait=10
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"build:stats": "genx analyze",
|
|
30
30
|
"clean": "genx clean dist node_modules",
|
|
31
31
|
"dev": "npm run dev:webpack",
|
|
32
|
-
"dev:docker": "npm run dev -- --host 0.0.0.0",
|
|
32
|
+
"dev:docker": "npm run dev -- -- --host 0.0.0.0",
|
|
33
33
|
"dev:intellij": "genx dev -e ENABLE_SSO -b webpack",
|
|
34
|
-
"dev:no-open": "npm run dev -- --no-open",
|
|
35
|
-
"dev:https": "npm run dev -- --https",
|
|
34
|
+
"dev:no-open": "npm run dev -- -- --no-open",
|
|
35
|
+
"dev:https": "npm run dev -- -- --https",
|
|
36
36
|
"dev:vite": "genx dev -e API_HOST,ENABLE_SSO -b vite",
|
|
37
37
|
"dev:webpack": "genx dev -e API_HOST,ENABLE_SSO -b webpack",
|
|
38
38
|
"dsconfig": "dsconfig --path src/styles/design-tokens.json",
|