Skip to content

Commit 7696468

Browse files
committed
1022819: Fixed dependabot issues.
1 parent 4f34b16 commit 7696468

3 files changed

Lines changed: 18 additions & 15 deletions

File tree

angular.json

Lines changed: 3 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": {

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,31 +10,31 @@
1010
},
1111
"private": true,
1212
"dependencies": {
13-
"@angular/animations": "^16.0.0",
14-
"@angular/common": "^16.0.0",
15-
"@angular/compiler": "^16.0.0",
16-
"@angular/core": "^16.0.0",
17-
"@angular/forms": "^16.0.0",
18-
"@angular/platform-browser": "^16.0.0",
19-
"@angular/platform-browser-dynamic": "^16.0.0",
20-
"@angular/router": "^16.0.0",
13+
"@angular/animations": "19.2.17",
14+
"@angular/common": "19.2.17",
15+
"@angular/compiler": "19.2.17",
16+
"@angular/core": "19.2.17",
17+
"@angular/forms": "19.2.17",
18+
"@angular/platform-browser": "19.2.17",
19+
"@angular/platform-browser-dynamic": "19.2.17",
20+
"@angular/router": "19.2.17",
2121
"@syncfusion/ej2-angular-maps": "^21.2.6",
2222
"@syncfusion/ej2-material-theme": "~21.2.9",
2323
"rxjs": "~7.8.0",
2424
"tslib": "^2.3.0",
2525
"zone.js": "~0.13.0"
2626
},
2727
"devDependencies": {
28-
"@angular-devkit/build-angular": "^16.0.4",
29-
"@angular/cli": "~16.0.4",
30-
"@angular/compiler-cli": "^16.0.0",
28+
"@angular-devkit/build-angular": "19.2.17",
29+
"@angular/cli": "19.2.17",
30+
"@angular/compiler-cli": "19.2.17",
3131
"@types/jasmine": "~4.3.0",
3232
"jasmine-core": "~4.6.0",
3333
"karma": "~6.4.0",
3434
"karma-chrome-launcher": "~3.2.0",
3535
"karma-coverage": "~2.2.0",
3636
"karma-jasmine": "~5.1.0",
3737
"karma-jasmine-html-reporter": "~2.0.0",
38-
"typescript": "~5.0.2"
38+
"typescript": "~5.5.0"
3939
}
4040
}

src/app/app.component.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
import { Component } from '@angular/core';
22
import * as worldMapData from './worldMap.json';
33
@Component({
4+
45
selector: 'app-root',
6+
standalone: false,
57
templateUrl: './app.component.html',
68
styleUrls: ['./app.component.css']
9+
710
})
811

912
export class AppComponent {

0 commit comments

Comments
 (0)