@genesislcap/blank-app-seed 3.29.1 → 3.29.2

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.
@@ -16,7 +16,7 @@ module.exports = async (data, utils) => {
16
16
  // populate additional data fields
17
17
  data.pkgName = data.appName.replace(/[\W_]/g, '').toLowerCase();
18
18
  data.rootElement = `${data.pkgName}-root`;
19
- data.localGenId = data.appName.toUpperCase().replace('-', '_');
19
+ data.localGenId = data.appName.toUpperCase().replace(/-/g, '_');
20
20
  data.applicationVersionWeb = data.applicationVersion.split('-').shift();
21
21
  data.versions = versions;
22
22
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed-config",
3
3
  "description": "Genesis Blank App Seed Configuration",
4
- "version": "3.29.1",
4
+ "version": "3.29.2",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "lint": "eslint .",
@@ -1,6 +1,7 @@
1
1
  name: Release
2
2
 
3
3
  on:
4
+ workflow_dispatch:
4
5
  push:
5
6
  branches: [main, prerelease]
6
7
 
@@ -82,8 +82,8 @@ jobs:
82
82
  repo = process.env.REPO,
83
83
  title = 'fix: automated dependency version update [skip-ci] PSD-9',
84
84
  body = 'Automated PR',
85
- head = 'chore-dep-update',
86
- base = 'main';
85
+ head = 'chore-dep-update-${{inputs.branch}}',
86
+ base = '${{inputs.branch}}';
87
87
 
88
88
  (async () => {
89
89
  const response = await octokit.request(
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.29.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.29.1...v3.29.2) (2024-08-15)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * handling multiple hyphens when generating DB namespace PA-1361 (#318) 2dbaadb, closes PSD-9 PSD-9 PSD-0 PSD-0 PSD-0 PSD-0 PTC-0
9
+
3
10
  ## [3.29.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.29.0...v3.29.1) (2024-08-14)
4
11
 
5
12
 
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": "3.29.1",
4
+ "version": "3.29.2",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"