Skip to content

Commit d817dfd

Browse files
Merge branch 'main' into unicron-port-user-api-to-go
2 parents c14ddce + 42aff30 commit d817dfd

19 files changed

+5745
-5034
lines changed

.github/workflows/build-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up Node.js
2525
uses: actions/setup-node@v4
2626
with:
27-
node-version: 16
27+
node-version: 18
2828
cache: yarn
2929
cache-dependency-path: "yarn.lock"
3030

.github/workflows/deploy-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Node.js
2424
uses: actions/setup-node@v4
2525
with:
26-
node-version: 16
26+
node-version: 18
2727
cache: yarn
2828
cache-dependency-path: "yarn.lock"
2929

@@ -60,7 +60,7 @@ jobs:
6060
- name: Set up Node.js
6161
uses: actions/setup-node@v4
6262
with:
63-
node-version: 16
63+
node-version: 18
6464
cache: yarn
6565
cache-dependency-path: "yarn.lock"
6666

.github/workflows/deploy-prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up Node.js
2727
uses: actions/setup-node@v4
2828
with:
29-
node-version: 16
29+
node-version: 18
3030
cache: yarn
3131
cache-dependency-path: "yarn.lock"
3232

@@ -63,7 +63,7 @@ jobs:
6363
- name: Set up Node.js
6464
uses: actions/setup-node@v4
6565
with:
66-
node-version: 16
66+
node-version: 18
6767
cache: yarn
6868
cache-dependency-path: "yarn.lock"
6969

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up Node.js
2222
uses: actions/setup-node@v4
2323
with:
24-
node-version: 16
24+
node-version: 18
2525
cache: yarn
2626
cache-dependency-path: "yarn.lock"
2727

.github/workflows/snyk-scan-edge-npm-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup Node
2222
uses: actions/setup-node@v4
2323
with:
24-
node-version: '16'
24+
node-version: '18'
2525
cache: 'yarn'
2626
cache-dependency-path: 'yarn.lock'
2727
- name: Yarn Version

.github/workflows/snyk-scan-npm-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup Node
2222
uses: actions/setup-node@v4
2323
with:
24-
node-version: '16'
24+
node-version: '18'
2525
cache: 'yarn'
2626
cache-dependency-path: 'yarn.lock'
2727
- name: Yarn Version

.github/workflows/yarn-scan-cypress-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Node
2121
uses: actions/setup-node@v4
2222
with:
23-
node-version: "16"
23+
node-version: "18"
2424
cache: "yarn"
2525
cache-dependency-path: "test/functional/yarn.lock"
2626

.github/workflows/yarn-scan-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Node
2020
uses: actions/setup-node@v4
2121
with:
22-
node-version: '16'
22+
node-version: '18'
2323
cache: 'yarn'
2424
cache-dependency-path: 'yarn.lock'
2525
- name: Setup

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,4 @@ Thumbs.db
7373
.nosync
7474
out
7575
*.swp
76+
.angular/

angular.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,16 @@
2222
"main": "src/main.ts",
2323
"polyfills": "src/polyfills.ts",
2424
"tsConfig": "tsconfig.app.json",
25-
"aot": true,
2625
"assets": ["src/favicon.ico", "src/assets"],
2726
"styles": ["src/styles.scss"],
2827
"scripts": [],
29-
"allowedCommonJsDependencies": ["url-parse", "query-string", "src/app/core/services/cla-contributor.service"]
28+
"allowedCommonJsDependencies": ["url-parse", "query-string", "src/app/core/services/cla-contributor.service", "@linuxfoundation/lfx-ui-core"],
29+
"vendorChunk": true,
30+
"extractLicenses": false,
31+
"buildOptimizer": false,
32+
"sourceMap": true,
33+
"optimization": false,
34+
"namedChunks": true
3035
},
3136
"configurations": {
3237
"production": {

0 commit comments

Comments
 (0)