Skip to content

Commit 0258960

Browse files
Merge pull request #3 from Sujitha2610/1021490-dependabot-fix
1021490: Upgrade to angular 19 to resolve dependabot issue
2 parents ecfec52 + 80a7bd7 commit 0258960

3 files changed

Lines changed: 27 additions & 22 deletions

File tree

angular.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,18 +61,18 @@
6161
"builder": "@angular-devkit/build-angular:dev-server",
6262
"configurations": {
6363
"production": {
64-
"browserTarget": "myangularproject:build:production"
64+
"buildTarget": "myangularproject:build:production"
6565
},
6666
"development": {
67-
"browserTarget": "myangularproject:build:development"
67+
"buildTarget": "myangularproject:build:development"
6868
}
6969
},
7070
"defaultConfiguration": "development"
7171
},
7272
"extract-i18n": {
7373
"builder": "@angular-devkit/build-angular:extract-i18n",
7474
"options": {
75-
"browserTarget": "myangularproject:build"
75+
"buildTarget": "myangularproject:build"
7676
}
7777
},
7878
"test": {
@@ -96,5 +96,8 @@
9696
}
9797
}
9898
}
99+
},
100+
"cli": {
101+
"analytics": "ae793090-73b7-4926-af35-1db1047dab82"
99102
}
100103
}

package.json

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -10,32 +10,33 @@
1010
},
1111
"private": true,
1212
"dependencies": {
13-
"@angular/animations": "^16.1.0",
14-
"@angular/common": "^16.1.0",
15-
"@angular/compiler": "^16.1.0",
16-
"@angular/core": "^16.1.0",
17-
"@angular/forms": "^16.1.0",
18-
"@angular/platform-browser": "^16.1.0",
19-
"@angular/platform-browser-dynamic": "^16.1.0",
20-
"@angular/router": "^16.1.0",
13+
"@angular/animations": "19.2.21",
14+
"@angular/common": "19.2.21",
15+
"@angular/compiler": "19.2.21",
16+
"@angular/core": "19.2.21",
17+
"@angular/forms": "19.2.21",
18+
"@angular/platform-browser": "19.2.21",
19+
"@angular/platform-browser-dynamic": "19.2.21",
20+
"@angular/router": "19.2.21",
2121
"@syncfusion/ej2-angular-buttons": "^22.2.8",
2222
"@syncfusion/ej2-angular-documenteditor": "^22.2.10",
2323
"@syncfusion/ej2-material-theme": "~22.2.8",
24-
"rxjs": "~7.8.0",
25-
"tslib": "^2.3.0",
26-
"zone.js": "~0.13.0"
24+
"rxjs": "~7.8.1",
25+
"tslib": "^2.6.0",
26+
"zone.js": "~0.15.0"
2727
},
2828
"devDependencies": {
29-
"@angular-devkit/build-angular": "^16.1.8",
30-
"@angular/cli": "~16.1.8",
31-
"@angular/compiler-cli": "^16.1.0",
32-
"@types/jasmine": "~4.3.0",
33-
"jasmine-core": "~4.6.0",
34-
"karma": "~6.4.0",
29+
"@angular-devkit/build-angular": "19.2.21",
30+
"@angular/cli": "19.2.21",
31+
"@angular/compiler-cli": "19.2.21",
32+
33+
"@types/jasmine": "~5.1.0",
34+
"jasmine-core": "~5.1.0",
35+
"karma": "~6.4.4",
3536
"karma-chrome-launcher": "~3.2.0",
36-
"karma-coverage": "~2.2.0",
37+
"karma-coverage": "~2.2.1",
3738
"karma-jasmine": "~5.1.0",
3839
"karma-jasmine-html-reporter": "~2.1.0",
39-
"typescript": "~5.1.3"
40+
"typescript": "~5.6.3"
4041
}
4142
}

src/app/app.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { Component, ViewChild } from '@angular/core';
22
import { DocumentEditorContainerComponent } from '@syncfusion/ej2-angular-documenteditor';
33

44
@Component({
5+
standalone: false,
56
selector: 'app-root',
67
templateUrl: './app.component.html',
78
styleUrls: ['./app.component.css']

0 commit comments

Comments
 (0)