@genesislcap/blank-app-seed 2.5.4 → 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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed-config",
3
3
  "description": "Genesis Blank App Seed Configuration",
4
- "version": "2.5.4",
4
+ "version": "2.5.6",
5
5
  "license": "Apache-2.0",
6
6
  "genxSeedConfig": {
7
7
  "exclude": [
@@ -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/" --sort-by="name;created" --sort-order=desc --limit=1 --exclusions="*-RC*;*-SNAPSHOT*;*maven-metadata*;*test*;*TEST*" | grep path | tr -s ' ' | cut -d '/' -f 5`);
24
- const Auth = run(`jf rt s "libs-release-client/global/genesis/auth-distribution/" --sort-by="name;created" --sort-order=desc --limit=1 --exclusions="*-RC*;*-SNAPSHOT*;*maven-metadata*;*test*;*TEST*" | grep path | tr -s ' ' | cut -d '/' -f 5`);
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);
@@ -1,5 +1,5 @@
1
1
  {
2
- "UI": "14.162.1",
3
- "GSF": "7.1.9",
4
- "Auth": "7.1.3"
2
+ "UI": "14.162.4",
3
+ "GSF": "7.1.13",
4
+ "Auth": "7.1.4"
5
5
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
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
+
10
+ ## [2.5.5](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.4...v2.5.5) (2024-03-25)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * automated dependency version update [skip-ci] [PSD-9](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/9) (#159) ae7c062
16
+
3
17
  ## [2.5.4](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.5.3...v2.5.4) (2024-03-22)
4
18
 
5
19
 
@@ -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": "genx dev -e API_HOST,ENABLE_SSO",
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:webpack": "npm run dev -- -b webpack",
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed",
3
3
  "description": "Genesis Blank App Seed",
4
- "version": "2.5.4",
4
+ "version": "2.5.6",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"
@@ -12,9 +12,3 @@ sourceSets {
12
12
  }
13
13
  }
14
14
  }
15
-
16
- tasks {
17
- copyDependencies {
18
- enabled = false
19
- }
20
- }