@genesislcap/blank-app-seed 2.5.5 → 2.5.6
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
|
@@ -20,8 +20,8 @@ const writeJSON = (json, path) => {
|
|
|
20
20
|
};
|
|
21
21
|
|
|
22
22
|
const UI = run('npm info @genesislcap/foundation-ui@latest version');
|
|
23
|
-
const GSF = run(`jf rt s "libs-release-client/global/genesis/genesis-distribution/" --
|
|
24
|
-
const Auth = run(`jf rt s "libs-release-client/global/genesis/auth-distribution/" --
|
|
23
|
+
const GSF = run(`jf rt s "libs-release-client/global/genesis/genesis-distribution/" --exclusions="*-RC*;*-SNAPSHOT*;*maven-metadata*;*test*;*TEST*" | grep path | tr -s ' ' | sed 's/"path": //g' | awk -F'/' '{print $(NF-1)}' | sort -V | tail -n 1`);
|
|
24
|
+
const Auth = run(`jf rt s "libs-release-client/global/genesis/auth-distribution/" --exclusions="*-RC*;*-SNAPSHOT*;*maven-metadata*;*test*;*TEST*" | grep path | tr -s ' ' | sed 's/"path": //g' | awk -F'/' '{print $(NF-1)}' | sort -V | tail -n 1`);
|
|
25
25
|
const latest = { UI, GSF, Auth };
|
|
26
26
|
|
|
27
27
|
console.log('Current:', current);
|
package/.genx/versions.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.5.6](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.5...v2.5.6) (2024-03-27)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* switching to Webpack dev build for PBC compatibility NOTIFY-119 (#165) 72c7f98
|
|
9
|
+
|
|
3
10
|
## [2.5.5](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.4...v2.5.5) (2024-03-25)
|
|
4
11
|
|
|
5
12
|
|
package/client/package.json
CHANGED
|
@@ -26,12 +26,13 @@
|
|
|
26
26
|
"build": "genx build -e ENABLE_SSO",
|
|
27
27
|
"build:stats": "genx analyze",
|
|
28
28
|
"clean": "genx clean dist node_modules",
|
|
29
|
-
"dev": "
|
|
29
|
+
"dev": "npm run dev:webpack",
|
|
30
30
|
"dev:docker": "npm run dev -- --host 0.0.0.0",
|
|
31
31
|
"dev:intellij": "genx dev -e ENABLE_SSO",
|
|
32
32
|
"dev:no-open": "npm run dev -- --no-open",
|
|
33
33
|
"dev:https": "npm run dev -- --https",
|
|
34
|
-
"dev:
|
|
34
|
+
"dev:vite": "genx dev -e API_HOST,ENABLE_SSO -b vite",
|
|
35
|
+
"dev:webpack": "genx dev -e API_HOST,ENABLE_SSO -b webpack",
|
|
35
36
|
"dsconfig": "dsconfig --path src/styles/design-tokens.json",
|
|
36
37
|
"git:setup": "cd .. && npx --yes husky install",
|
|
37
38
|
"lint": "genx lint --profile",
|
package/package.json
CHANGED