Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
340 changes: 228 additions & 112 deletions demo/package-lock.json

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^20.0.0-rc.2",
"@angular/common": "^20.0.0-rc.2",
"@angular/compiler": "^20.0.0-rc.2",
"@angular/core": "^20.0.0-rc.2",
"@angular/forms": "^20.0.0-rc.2",
"@angular/platform-browser": "^20.0.0-rc.2",
"@angular/platform-browser-dynamic": "^20.0.0-rc.2",
"@angular/platform-server": "^20.0.0-rc.2",
"@angular/router": "^20.0.0-rc.2",
"@angular/ssr": "^20.0.0-rc.3",
"@angular/animations": "^20.0.1",
"@angular/common": "^20.0.1",
"@angular/compiler": "^20.0.1",
"@angular/core": "^20.0.1",
"@angular/forms": "^20.0.1",
"@angular/platform-browser": "^20.0.1",
"@angular/platform-browser-dynamic": "^20.0.1",
"@angular/platform-server": "^20.0.1",
"@angular/router": "^20.0.1",
"@angular/ssr": "^20.0.1",
"@netlify/angular-runtime": "file:..",
"@netlify/edge-functions": "^2.12.0",
"express": "^4.21.0",
Expand All @@ -29,9 +29,9 @@
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular/build": "^20.0.0-rc.3",
"@angular/cli": "^20.0.0-rc.3",
"@angular/compiler-cli": "^20.0.0-rc.2",
"@angular/build": "^20.0.1",
"@angular/cli": "^20.0.1",
"@angular/compiler-cli": "^20.0.1",
"@types/express": "^4.17.21",
"@types/jasmine": "~5.1.0",
"@types/node": "^22.0.0",
Expand Down
26 changes: 26 additions & 0 deletions tests/fixtures/angular-20-zoneless/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,5 +86,31 @@
}
}
}
},
"schematics": {
"@schematics/angular:component": {
"type": "component"
},
"@schematics/angular:directive": {
"type": "directive"
},
"@schematics/angular:service": {
"type": "service"
},
"@schematics/angular:guard": {
"typeSeparator": "."
},
"@schematics/angular:interceptor": {
"typeSeparator": "."
},
"@schematics/angular:module": {
"typeSeparator": "."
},
"@schematics/angular:pipe": {
"typeSeparator": "."
},
"@schematics/angular:resolver": {
"typeSeparator": "."
}
}
}
Loading