-
Notifications
You must be signed in to change notification settings - Fork 0
Port custom DisposableStack polyfills and simplify build scripts #63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
a9bba14
d5bf588
6e763a9
ec55e3c
4137994
5885672
c6b8f7c
34f4da1
ffa0c1b
1f1364d
239bb3c
dafcc1d
a9b0aa0
26323ab
2f1c98b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -9,15 +9,15 @@ | |||||||||||
| "generate-pwa-assets": "pwa-assets-generator" | ||||||||||||
| }, | ||||||||||||
| "dependencies": { | ||||||||||||
| "@angular/core": "^21.1.5", | ||||||||||||
| "@angular/platform-browser": "^21.1.5", | ||||||||||||
| "@angular/core": "^21.2.1", | ||||||||||||
| "@angular/platform-browser": "^21.2.1", | ||||||||||||
| "@evolu/common": "workspace:*", | ||||||||||||
| "@evolu/web": "workspace:*" | ||||||||||||
| }, | ||||||||||||
| "devDependencies": { | ||||||||||||
| "@analogjs/vite-plugin-angular": "^2.3.1", | ||||||||||||
| "@angular/build": "^21.1.5", | ||||||||||||
| "@angular/compiler-cli": "^21.1.5", | ||||||||||||
| "@angular/compiler-cli": "^21.2.1", | ||||||||||||
|
Comment on lines
19
to
+20
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🌐 Web query:
💡 Result: For Angular v21 (i.e.,
Practical takeaway: keep Sources: [1] [2] [3] [4] 🌐 Web query:
💡 Result: Angular v21.x (applies to 21.2.x as well): required versionsAngular’s official compatibility table for Angular 21.0.x (i.e., the v21 line) lists these requirements: Node.js Key npm peer/engine requirements (example from
|
||||||||||||
| "@angular/build": "^21.1.5", | |
| "@angular/compiler-cli": "^21.1.5", | |
| "@angular/compiler-cli": "^21.2.1", | |
| "@angular/build": "^21.2.1", | |
| "@angular/compiler-cli": "^21.2.1", |
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@examples/angular-vite-pwa/package.json` around lines 19 - 20, Aktualizujte
závislost `@angular/build` v package.json z ^21.1.5 na ^21.2.1, aby byla zarovnána
s ostatními Angular core balíčky (např. `@angular/compiler-cli` na ^21.2.1);
upravte hodnotu verze pro "@angular/build" v tom bloku a uložte změnu, aby
všechny core balíčky měly stejnou minor/patch verzi.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
buildchanged fromrimraf dist && tsctotsc --build tsconfig.jsonwithout cleaningdistfirst.tsc --buildwon’t delete outputs for removed/renamed sources, so repeat builds can leave stale files underdist/. Consider adding adistclean step (or a dedicatedclean:dist) before building to keep the runtime output deterministic.