Update angular to latest version of 16 and tauri to 1.5.3 #5
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Users may have to update their global angular cli by running the following command:
npm install -g @angular/cli@^16
The commands used to update the project were as follows:
cd ./scr-tauri
cargo update
cd ../
ng update @angular/core@16 @angular/cli@16 @angular-eslint/schematics@16
The following page was referenced for the angular migration:
https://update.angular.io/?v=15.0-16.0
Type of change
Update to newer versions of angular and tauri
Checklist:
Tests Run:
npm run test
npm run web:serve
npm run web:prod
npm run tauri:bundle
- I verified that the bundled app worked as expected by running the built .exe and the .msiExtra Info:
I have also put a PR out on awesome-tauri, to include your template as a reference for bootstrapping with angular.
They already have an angular template, but in my opinion is is not as good as this one.
tauri-apps/awesome-tauri#243