Skip to content

Commit cd2dd2e

Browse files
author
4gray
committed
chore: update to angular v20
- Removed unnecessary imports from header, account-info, loading-overlay, navigation-bar, season-container, serial-details, and vod-details components. - Updated template syntax to use structural directives more efficiently in mpv-player-bar, account-info, navigation-bar, season-container, serial-details, and vod-details components. - Enhanced readability and maintainability of the code by organizing imports and using Angular's async pipe and structural directives appropriately. - Adjusted TypeScript configuration to use "bundler" for module resolution for better compatibility with modern build tools.
1 parent 4fe40a7 commit cd2dd2e

File tree

47 files changed

+31448
-29287
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+31448
-29287
lines changed

angular.json

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,30 @@
137137
"schematics": {
138138
"@schematics/angular:component": {
139139
"prefix": "app",
140-
"style": "scss"
140+
"style": "scss",
141+
"type": "component"
141142
},
142143
"@schematics/angular:directive": {
143-
"prefix": "app"
144+
"prefix": "app",
145+
"type": "directive"
146+
},
147+
"@schematics/angular:service": {
148+
"type": "service"
149+
},
150+
"@schematics/angular:guard": {
151+
"typeSeparator": "."
152+
},
153+
"@schematics/angular:interceptor": {
154+
"typeSeparator": "."
155+
},
156+
"@schematics/angular:module": {
157+
"typeSeparator": "."
158+
},
159+
"@schematics/angular:pipe": {
160+
"typeSeparator": "."
161+
},
162+
"@schematics/angular:resolver": {
163+
"typeSeparator": "."
144164
}
145165
}
146166
}

0 commit comments

Comments
 (0)