@genesislcap/blank-app-seed 3.30.0-prerelease.32 → 3.30.0-prerelease.34

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.30.0-prerelease.32",
4
+ "version": "3.30.0-prerelease.34",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "lint": "eslint .",
@@ -22,18 +22,16 @@ import { columnDefs } from './{{kebabCase tile.title}}.column.defs';
22
22
  import { gridOptions } from './{{kebabCase tile.title}}.gridOptions';
23
23
  {{/if}}
24
24
 
25
- {{#if tile.metadata.comment}}
25
+ {{#ifAny tile.metadata.comment tile.metadata.todo}}
26
26
  /*
27
- {{ tile.metadata.comment }}
28
- */
27
+ {{#if tile.metadata.comment}}{{{ tile.metadata.comment }}}{{/if}}
28
+ {{~#if tile.metadata.todo}}{{#if tile.metadata.comment}}
29
29
 
30
30
  {{/if}}
31
- {{#if tile.metadata.todo}}
32
- /*
33
- {{ tile.metadata.todo }}
31
+ TODO: {{{ tile.metadata.todo }}}{{/if}}
34
32
  */
33
+ {{/ifAny}}
35
34
 
36
- {{/if}}
37
35
  @Component({
38
36
  selector: 'app-{{kebabCase tile.componentName}}',
39
37
  templateUrl: './{{kebabCase tile.title}}.component.html',
@@ -25,18 +25,16 @@ import { gridOptions as gridOptionsTile } from './{{pascalCase tile.title}}GridO
25
25
  {{/if}}
26
26
  import './{{pascalCase tile.title}}Component.css';
27
27
 
28
- {{#if tile.metadata.comment}}
28
+ {{#ifAny tile.metadata.comment tile.metadata.todo}}
29
29
  /*
30
- {{ tile.metadata.comment }}
31
- */
30
+ {{#if tile.metadata.comment}}{{{ tile.metadata.comment }}}{{/if}}
31
+ {{~#if tile.metadata.todo}}{{#if tile.metadata.comment}}
32
32
 
33
33
  {{/if}}
34
- {{#if tile.metadata.todo}}
35
- /*
36
- {{ tile.metadata.todo }}
34
+ TODO: {{{ tile.metadata.todo }}}{{/if}}
37
35
  */
36
+ {{/ifAny}}
38
37
 
39
- {{/if}}
40
38
  export const {{pascalCase tile.componentName}}: React.FC = () => {
41
39
  {{#if tile.config.permissions.viewRight~}}
42
40
  const hasUserPermission = (permissionCode: string): boolean => getViewUpdateRightComponent(getUser(), permissionCode);
@@ -3,18 +3,16 @@ import { customElement, GenesisElement } from '@genesislcap/web-core';
3
3
  import { {{pascalCase tile.title}}Styles as styles } from './{{kebabCase tile.title}}.styles';
4
4
  import { {{pascalCase tile.title}}Template as template } from './{{kebabCase tile.title}}.template';
5
5
 
6
- {{#if tile.metadata.comment}}
6
+ {{#ifAny tile.metadata.comment tile.metadata.todo}}
7
7
  /*
8
- {{ tile.metadata.comment }}
9
- */
8
+ {{#if tile.metadata.comment}}{{{ tile.metadata.comment }}}{{/if}}
9
+ {{~#if tile.metadata.todo}}{{#if tile.metadata.comment}}
10
10
 
11
11
  {{/if}}
12
- {{#if tile.metadata.todo}}
13
- /*
14
- {{ tile.metadata.todo }}
12
+ TODO: {{{ tile.metadata.todo }}}{{/if}}
15
13
  */
14
+ {{/ifAny}}
16
15
 
17
- {{/if}}
18
16
  @customElement({
19
17
  name: '{{kebabCase tile.componentName}}',
20
18
  template,
@@ -1,5 +1,5 @@
1
1
  {
2
- "UI": "14.211.0",
2
+ "UI": "14.217.0",
3
3
  "GSF": "8.5.0-beta2",
4
- "Auth": "8.5.0-beta1"
4
+ "Auth": "8.5.0-beta2"
5
5
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.30.0-prerelease.34](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.30.0-prerelease.33...v3.30.0-prerelease.34) (2024-11-04)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * automated dependency version update [skip-ci] [PSD-9](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/9) (#375) a5d9161
9
+ * back-porting todo formatting fix to prerelease branch GENC-853 (#377) 8d6f214
10
+
11
+ ## [3.30.0-prerelease.33](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.30.0-prerelease.32...v3.30.0-prerelease.33) (2024-10-29)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * updating server version information for Auth [PSD-0](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/0) 6f17702
17
+
3
18
  ## [3.30.0-prerelease.32](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.30.0-prerelease.31...v3.30.0-prerelease.32) (2024-10-29)
4
19
 
5
20
 
@@ -3,45 +3,57 @@
3
3
 
4
4
  This project is built with React.
5
5
 
6
- ## Development
7
-
8
- 1. Install dependencies:
6
+ ## Install dependencies:
9
7
 
10
8
  ```shell
11
9
  npm run bootstrap
12
10
  ```
13
11
 
14
- 2. Start the development server:
12
+ ## Development server
15
13
 
16
- ```shell
17
- npm run start
18
- ```
14
+ Run `npm run dev` for a dev server. Navigate to `http://localhost:3000/`. The application will automatically reload if you change any of the source files.
19
15
 
20
- 3. Build for production:
16
+ ## Build
21
17
 
22
- ```shell
23
- npm run build
24
- ```
18
+ Run `npm run build` to build the project. The build artifacts will be stored in the `dist/` directory.
25
19
 
26
- Preview the production build:
20
+ ## Running unit tests
27
21
 
28
- ```shell
29
- npm run serve
30
- ```
22
+ Run `npm run test` to execute the unit tests via [Jest](https://jestjs.io/docs/getting-started).
31
23
 
32
- ## Clean
24
+ ## Running end-to-end tests
33
25
 
34
- Remove `build` and `node_modules` directories:
26
+ Run `npm run test:e2e` to execute the end-to-end tests.
35
27
 
36
- ```shell
37
- npm run clean
38
- ```
28
+ ## Linting
39
29
 
40
- Baseline task combines `clean` and `install` tasks into a single command:
30
+ Run `npm run lint` to lint the project.
41
31
 
42
- ```shell
43
- npm run baseline
44
- ```
32
+ ## NPM Scripts
33
+
34
+ - `npm run baseline`: Cleans the project and installs dependencies.
35
+ - `npm run bootstrap`: Installs dependencies without auditing or funding checks.
36
+ - `npm run bootstrap:ci`: Installs dependencies in CI environment without auditing or funding checks.
37
+ - `npm run build`: Builds the project in production configuration.
38
+ - `npm run build:stats`: Builds the project and generates a stats JSON file.
39
+ - `npm run clean`: Cleans the `dist` and `node_modules` directories.
40
+ - `npm run dev`: Serves the project in development mode.
41
+ - `npm run dev:vite`: Serves the project in development mode (specific for vite configuration).
42
+ - `npm run dev:docker`: Serves the project in development mode, accessible from any network interface.
43
+ - `npm run dev:no-open`: Serves the project in development mode without automatically opening the browser.
44
+ - `npm run dev:intellij`: Serves the project in development mode (specific for IntelliJ).
45
+ - `npm run dev:https`: Serves the project in development mode with HTTPS.
46
+ - `npm run dsconfig`: Configures design system based on `src/styles/design-tokens.json`.
47
+ - `npm run lint`: Lints the project using the specified profile.
48
+ - `npm run lint:fix`: Fixes linting errors in the project.
49
+ - `npm run lint:eslint`: Lints the project using ESLint and the specified profile.
50
+ - `npm run lint:stylelint`: Lints CSS using a custom script.
51
+ - `npm run test`: Runs unit tests.
52
+ - `npm run test:e2e`: Runs end-to-end tests.
53
+ - `npm run test:e2e:debug`: Runs end-to-end tests in debug mode.
54
+ - `npm run test:e2e:ui`: Runs end-to-end tests in interactive mode.
55
+ - `npm run test:coverage`: Runs unit tests and generates a code coverage report.
56
+ - `npm run test:unit:watch`: Runs unit tests in watch mode.
45
57
 
46
58
  ## Further help
47
59
 
@@ -9,12 +9,11 @@
9
9
  "baseline": "npm run clean && npm run bootstrap",
10
10
  "bootstrap": "npm i --legacy-peer-deps",
11
11
  "bootstrap:ci": "npm ci --no-fund --no-audit",
12
+ "build": "webpack --mode production",
13
+ "build:vite": "vite build",
12
14
  "build:stats": "npm run build --stats-json",
13
15
  "clean": "genx clean dist node_modules",
14
16
  "dev": "webpack serve --mode development",
15
- "build": "webpack --mode production",
16
- "stats": "webpack --mode production --json > stats.json",
17
- "build:vite": "vite build",
18
17
  "dev:vite": "vite build && vite preview",
19
18
  "dev:docker": "npm run dev -- --host 0.0.0.0",
20
19
  "dev:no-open": "NO_OPEN=true npm run dev",
@@ -25,6 +24,7 @@
25
24
  "lint:fix": "eslint src/**/*.ts src/**/*.tsx --fix",
26
25
  "lint:eslint": "npm lint",
27
26
  "lint:stylelint": "npx ts-node lint-css.ts",
27
+ "stats": "webpack --mode production --json > stats.json",
28
28
  "test": "jest",
29
29
  "test:coverage": "jest --coverage",
30
30
  "test:unit:watch": "jest --watchAll",
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.30.0-prerelease.32",
4
+ "version": "3.30.0-prerelease.34",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"