@genesislcap/blank-app-seed 2.3.0 → 2.3.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.
@@ -13,7 +13,7 @@ const makeDirectory = (directory) => {
13
13
  */
14
14
  module.exports = async (data, utils) => {
15
15
  // populate additional data fields
16
- data.pkgName = data.appName.replace(/[\W_]/g, '');
16
+ data.pkgName = data.appName.replace(/[\W_]/g, '').toLowerCase();
17
17
  data.rootElement = `${data.pkgName}-root`;
18
18
  data.localGenId = data.appName.toUpperCase().replace("-", "_");
19
19
  data.applicationVersionWeb = data.applicationVersion.split('-').shift();
package/.genx/details.js CHANGED
@@ -8,9 +8,14 @@ const summary = `
8
8
  `;
9
9
 
10
10
  const nextStepsMessage = `
11
- > Go into the (web) client directory with \`cd client\`\n
12
- > Install dependencies with \`npm run bootstrap\`\n
13
- > Start the development server with \`npm run dev\`
11
+ > Initialise a new repository e.g.:
12
+ \`git init\`
13
+ \`git add --all\`
14
+ \`git commit -m 'Initial commit'\`\n
15
+ > Start Web client:
16
+ \`cd client\`
17
+ \`npm run bootstrap\`
18
+ \`npm run dev\`
14
19
  `;
15
20
 
16
21
  module.exports = {
@@ -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.3.0",
4
+ "version": "2.3.2",
5
5
  "license": "Apache-2.0",
6
6
  "genxSeedConfig": {
7
7
  "exclude": [
@@ -1,7 +1,6 @@
1
1
  name: Build
2
2
 
3
3
  on:
4
- push:
5
4
  pull_request:
6
5
  branches: [main, master, develop, alpha]
7
6
  workflow_dispatch:
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.3.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.3.1...v2.3.2) (2024-03-14)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * handling uppercase characters in app name PA-1156 (#146) 0ce062e
9
+
10
+ ## [2.3.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.3.0...v2.3.1) (2024-03-14)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * add version to gradle.properties. (PBC-101) (#147) bb04aab
16
+
3
17
  ## [2.3.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.2.0...v2.3.0) (2024-03-14)
4
18
 
5
19
 
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.3.0",
4
+ "version": "2.3.2",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"
@@ -3,6 +3,7 @@ org.gradle.jvmargs=-Xmx6g -Xss512k -XX:+HeapDumpOnOutOfMemoryError -XX:+UseG1GC
3
3
  org.gradle.configuration-cache=true
4
4
  enableDockerTasks=true
5
5
  dockerCompactProcesses=true
6
+ version={{applicationVersion}}
6
7
  genesisVersion={{ versions.GSF }}
7
8
  authVersion={{ versions.Auth }}
8
9