mirror of
https://github.com/django-components/django-components.git
synced 2025-09-22 05:32:27 +00:00
feat: allow extensions to add commands (#1017)
* feat: allow extensions to add commands * refactor: fix tests * refactor: more test fix * refactor: more test fixes * refactor: more linter fixes
This commit is contained in:
parent
3a139127cd
commit
d3d2d0ab08
28 changed files with 2320 additions and 397 deletions
11
src/django_components/commands/startcomponent.py
Normal file
11
src/django_components/commands/startcomponent.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
from django_components.commands.create import CreateCommand
|
||||
|
||||
|
||||
# TODO_REMOVE_IN_V1 - Superseded by `components create`
|
||||
class StartComponentCommand(CreateCommand):
|
||||
"""
|
||||
**Deprecated**. Use [`components create`](../commands#components-create) instead.
|
||||
"""
|
||||
|
||||
name = "startcomponent"
|
||||
help = "Deprecated. Use `components create` instead."
|
Loading…
Add table
Add a link
Reference in a new issue