Skip to content

Commit af5e769

Browse files
committed
fix: fix PR issues
1 parent 343270f commit af5e769

File tree

12 files changed

+33
-89
lines changed

12 files changed

+33
-89
lines changed

.github/workflows/pipeline.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: pipe
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
types:
8+
- opened
9+
- synchronize
10+
11+
concurrency:
12+
group: ${{ github.ref }}
13+
cancel-in-progress: true
14+
15+
jobs:
16+
pipe:
17+
uses: platform-mesh/.github/.github/workflows/pipeline-node-module.yml@main
18+
secrets: inherit
19+
with:
20+
imageTagName: ghcr.io/platform-mesh/portal
21+
componentVersionKey: portal

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@ yarn-error.log
2222

2323
# Visual Studio Code
2424
.vscode/*
25-
!.vscode/settings.json
26-
!.vscode/tasks.json
27-
!.vscode/launch.json
28-
!.vscode/extensions.json
2925
.history/*
3026

3127
# Miscellaneous

.vscode/extensions.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.vscode/launch.json

Lines changed: 0 additions & 20 deletions
This file was deleted.

.vscode/tasks.json

Lines changed: 0 additions & 42 deletions
This file was deleted.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
"tslib": "^2.3.0"
1515
},
1616
"devDependencies": {
17-
"@angular-builders/jest": "^18.0.0 || ^19.0.0",
17+
"@angular-builders/jest": "^19.0.0 || ^20.0.0",
1818
"@angular-devkit/build-angular": "^19.2.15",
1919
"@angular/build": "^19.2.15",
2020
"@angular/cli": "^19.2.15",
2121
"@angular/compiler-cli": "^19.2.14",
22-
"@angular/localize": "^18.0.0 || ^19.0.0",
22+
"@angular/localize": "^19.0.0 || ^20.0.0",
2323
"@briebug/jest-schematic": "^6.0.0",
2424
"@types/jest": "^30.0.0",
2525
"@types/jmespath": "0.15.2",

projects/lib/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
},
77
"peerDependencies": {
88
"@openmfp/portal-ui-lib": "^0.172.0",
9-
"@angular/common": "^18.0.0 || ^19.0.0",
10-
"@angular/compiler": "^18.0.0 || ^19.0.0",
11-
"@angular/core": "^18.0.0 || ^19.0.0",
12-
"@angular/elements": "^18.0.0 || ^19.0.0",
13-
"@angular/forms": "^18.0.0 || ^19.0.0",
14-
"@angular/platform-browser": "^18.0.0 || ^19.0.0",
15-
"@angular/platform-browser-dynamic": "^18.0.0 || ^19.0.0",
16-
"@angular/router": "^18.0.0 || ^19.0.0",
9+
"@angular/common": "^19.0.0 || ^20.0.0",
10+
"@angular/compiler": "^19.0.0 || ^20.0.0",
11+
"@angular/core": "^19.0.0 || ^20.0.0",
12+
"@angular/elements": "^19.0.0 || ^20.0.0",
13+
"@angular/forms": "^19.0.0 || ^20.0.0",
14+
"@angular/platform-browser": "^19.0.0 || ^20.0.0",
15+
"@angular/platform-browser-dynamic": "^19.0.0 || ^20.0.0",
16+
"@angular/router": "^19.0.0 || ^20.0.0",
1717
"@ui5/webcomponents-ngx": "^0.4.8 || ^0.5.0",
1818
"rxjs": "~7.8.0",
1919
"zone.js": "~0.15.1"

projects/lib/tsconfig.lib.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
2-
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
31
{
42
"extends": "../../tsconfig.json",
53
"compilerOptions": {

projects/lib/tsconfig.lib.prod.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
2-
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
31
{
42
"extends": "./tsconfig.lib.json",
53
"compilerOptions": {

0 commit comments

Comments
 (0)