File tree Expand file tree Collapse file tree 3 files changed +4
-26
lines changed Expand file tree Collapse file tree 3 files changed +4
-26
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,10 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/
27
27
- Added management command ` generate_asset_manifest ` for pre-computing template-component relationships
28
28
- Added automatic fallback to component scanning in development mode (when DEBUG=True)
29
29
30
+ ### Removed
31
+
32
+ - Removed automatic component scanning at application startup for faster initialization
33
+
30
34
## [ 0.16.2]
31
35
32
36
### Added
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ class DjangoBirdAppConfig(AppConfig):
15
15
16
16
@override
17
17
def ready (self ):
18
- from django_bird .components import components
19
18
from django_bird .conf import app_settings
20
19
from django_bird .plugins import pm
21
20
from django_bird .staticfiles import asset_types
@@ -25,7 +24,6 @@ def ready(self):
25
24
26
25
app_settings .autoconfigure ()
27
26
pm .hook .register_asset_types (register_type = asset_types .register_type )
28
- components .discover_components ()
29
27
30
28
for ready in pm .hook .ready ():
31
29
ready ()
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments