Skip to content

Commit 09969ff

Browse files
authored
Merge pull request #400 from IgniteUI/dkamburov/ng-19
chore(*): update to ng 19
2 parents a64e1e7 + a867663 commit 09969ff

File tree

123 files changed

+4066
-3086
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+4066
-3086
lines changed

.eslintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"plugin:@angular-eslint/template/process-inline-templates"
2121
],
2222
"rules": {
23+
"@angular-eslint/prefer-standalone": ["off"],
2324
"@angular-eslint/component-selector": [
2425
"error",
2526
{

.github/workflows/node.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [18.x]
19+
node-version: [18.x, 20.x]
2020

2121
steps:
2222
- uses: actions/checkout@v2
@@ -30,7 +30,7 @@ jobs:
3030
- run: npm run test:lib
3131

3232
- name: Publish to coveralls.io
33-
if: github.repository == 'IgniteUI/igniteui-angular-wrappers' && matrix.node-version == '16.x'
33+
if: github.repository == 'IgniteUI/igniteui-angular-wrappers' && matrix.node-version == '20.x'
3434
uses: coverallsapp/[email protected]
3535
with:
3636
path-to-lcov: ./coverage/lcov.info

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v2
1212
- uses: actions/setup-node@v1
1313
with:
14-
node-version: 18
14+
node-version: 20
1515
registry-url: 'https://registry.npmjs.org'
1616
- run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
1717
- run: echo ${VERSION}

angular.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,15 @@
1111
"prefix": "app",
1212
"architect": {
1313
"build": {
14-
"builder": "@angular-devkit/build-angular:browser",
14+
"builder": "@angular-devkit/build-angular:application",
1515
"options": {
16-
"outputPath": "dist/wrappers",
16+
"outputPath": {
17+
"base": "dist/wrappers"
18+
},
1719
"index": "src/index.html",
18-
"main": "src/main.ts",
19-
"polyfills": "src/polyfills.ts",
20+
"polyfills": [
21+
"src/polyfills.ts"
22+
],
2023
"tsConfig": "tsconfig.app.json",
2124
"assets": [
2225
"src/favicon.ico",
@@ -26,10 +29,9 @@
2629
"src/styles.css"
2730
],
2831
"scripts": [],
29-
"vendorChunk": true,
30-
"buildOptimizer": false,
3132
"sourceMap": true,
32-
"optimization": false
33+
"optimization": false,
34+
"browser": "src/main.ts"
3335
},
3436
"configurations": {
3537
"production": {
@@ -42,8 +44,6 @@
4244
"optimization": true,
4345
"outputHashing": "all",
4446
"sourceMap": false,
45-
"vendorChunk": false,
46-
"buildOptimizer": true,
4747
"budgets": [
4848
{
4949
"type": "initial",

0 commit comments

Comments
 (0)