@genesislcap/blank-app-seed 3.4.2 → 3.5.0

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": "3.4.2",
4
+ "version": "3.5.0",
5
5
  "license": "Apache-2.0",
6
6
  "genxSeedConfig": {
7
7
  "exclude": [
@@ -5,11 +5,19 @@ const parsecsv = parseJSONArgument('csv', []);
5
5
 
6
6
  module.exports = async (inquirer, prevAns = {}) => {
7
7
  const {
8
+ description = prevAns.description,
8
9
  groupId = prevAns.groupId,
9
10
  applicationVersion = prevAns.applicationVersion,
10
11
  enableDeployPlugin = prevAns.enableDeployPlugin,
11
12
  csv = prevAns.csv,
12
13
  } = await inquirer.prompt([
14
+ {
15
+ name: 'description',
16
+ type: 'input',
17
+ message: 'Project Description',
18
+ when: !prevAns.description,
19
+ default:'\n'
20
+ },
13
21
  {
14
22
  name: 'groupId',
15
23
  type: 'input',
@@ -42,6 +50,7 @@ module.exports = async (inquirer, prevAns = {}) => {
42
50
  ]);
43
51
 
44
52
  return {
53
+ description,
45
54
  groupId,
46
55
  applicationVersion,
47
56
  enableDeployPlugin,
package/.genx/prompts.js CHANGED
@@ -1,24 +1,25 @@
1
1
  const apiPrompts = require('./prompts/api');
2
2
  const genesisServerPrompts = require('./prompts/server');
3
3
  const uiPrompts = require('./prompts/ui');
4
- const {description, license, name, version} = require('./package.json');
4
+ const {description: packageDescription, license, name, version} = require('./package.json');
5
5
 
6
6
  module.exports = async (inquirer, prevAns = {}) => {
7
7
  console.log(`
8
8
  Thanks for choosing this seed:
9
9
  Name: ${name}
10
- Description: ${description}
10
+ Description: ${packageDescription}
11
11
  Version: ${version}
12
12
  License: ${license}`);
13
13
 
14
14
  const {apiHost, enableSSO} = await apiPrompts(inquirer, prevAns)
15
- const {groupId, applicationVersion, enableDeployPlugin, csv} = await genesisServerPrompts(inquirer, prevAns);
15
+ const {description, groupId, applicationVersion, enableDeployPlugin, csv} = await genesisServerPrompts(inquirer, prevAns);
16
16
  const {routes, ui} = await uiPrompts(inquirer, prevAns);
17
17
 
18
18
  return {
19
19
  apiHost,
20
20
  routes,
21
21
  enableSSO,
22
+ description,
22
23
  groupId,
23
24
  applicationVersion,
24
25
  enableDeployPlugin,
@@ -1,5 +1,5 @@
1
1
  {
2
- "UI": "14.173.1",
2
+ "UI": "14.173.2",
3
3
  "GSF": "7.1.20",
4
- "Auth": "7.1.9"
4
+ "Auth": "7.1.10"
5
5
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.5.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.4.2...v3.5.0) (2024-04-29)
4
+
5
+
6
+ ### Features
7
+
8
+ * added project description to README. (GENC-356) (#191) b5fd5df
9
+
3
10
  ## [3.4.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.4.1...v3.4.2) (2024-04-29)
4
11
 
5
12
 
package/README.md CHANGED
@@ -4,6 +4,7 @@ This project has been created from the Genesis Blank Application Seed. Our seeds
4
4
  their projects. Each seed adheres to strict Genesis best practices, and has passed numerous performance, compliance and
5
5
  accessibility checks.
6
6
 
7
+ {{description}}
7
8
  {{!
8
9
 
9
10
  # Testing
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.4.2",
4
+ "version": "3.5.0",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"