Update ng-flutter to resolve security alerts (#1985)

The main goal was to resolve some security alerts being triggered on the
repository, but I also updated angular and verified the sample continues
to work.

Resolved security alerts:

- https://github.com/flutter/samples/security/dependabot/3
- https://github.com/flutter/samples/security/code-scanning/45
(https://github.com/advisories/GHSA-c2qf-rxjj-qqgw,
https://github.com/advisories/GHSA-353f-5xf4-qw67)
pull/1989/head
Parker Lougheed 11 months ago committed by GitHub
parent 286b5ca6c3
commit 95e4d1ad77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -71,8 +71,6 @@ In order to build this app, first fetch its `npm` dependencies:
```console
$ npm install
npm WARN deprecated @npmcli/move-file@2.0.1: This functionality has been moved to @npmcli/fs
added 963 packages, and audited 964 packages in 17s
93 packages are looking for funding
@ -128,7 +126,8 @@ vendor.js | vendor | 4.38 MB |
✔ Compiled successfully.
```
Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of its Angular source files.
Navigate to `http://localhost:4200/`. The application will automatically reload
if you change any of its Angular source files.
### Local Flutter web development

File diff suppressed because it is too large Load Diff

@ -11,24 +11,24 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^16.0.1",
"@angular/cdk": "^16.0.1",
"@angular/common": "^16.0.1",
"@angular/compiler": "^16.0.1",
"@angular/core": "^16.0.1",
"@angular/forms": "^16.0.1",
"@angular/material": "^16.0.1",
"@angular/platform-browser": "^16.0.1",
"@angular/platform-browser-dynamic": "^16.0.1",
"@angular/router": "^16.0.1",
"@angular/animations": "^16.1.8",
"@angular/cdk": "^16.1.7",
"@angular/common": "^16.1.8",
"@angular/compiler": "^16.1.8",
"@angular/core": "^16.1.8",
"@angular/forms": "^16.1.8",
"@angular/material": "^16.1.7",
"@angular/platform-browser": "^16.1.8",
"@angular/platform-browser-dynamic": "^16.1.8",
"@angular/router": "^16.1.8",
"rxjs": "~7.8.1",
"tslib": "^2.5.0",
"tslib": "^2.6.1",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.0.1",
"@angular/cli": "~16.0.0",
"@angular/compiler-cli": "^16.0.1",
"@angular-devkit/build-angular": "^16.1.8",
"@angular/cli": "~16.1.8",
"@angular/compiler-cli": "^16.1.8",
"@types/jasmine": "~4.3.1",
"jasmine-core": "~4.6.0",
"karma": "~6.4.2",
@ -36,6 +36,6 @@
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"typescript": "~5.0.4"
"typescript": "~5.1.6"
}
}
}

Loading…
Cancel
Save