mirror of
https://github.com/jeertmans/manim-slides.git
synced 2025-05-20 12:05:56 +08:00
feat(cli): add render command as alias to manim render
(#317)
* feat(cli): add render command as alias to `manim render` * feat(cli): add render command as alias to `manim render` * chore(test): add test * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * chore(lib): simplify how ManimGL rendering is called * chore(lib): test * chore(ci): try identify error * wip * chore(test): add result output * try: checkout * Revert "try: checkout" This reverts commit 60985f0b612ca0c6bff9726ebcccf07b1b1c4832. * fix(deps): don't update lock * chore(lib): simplify code and improve usage * chore(cli): better cli * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * fix: does this fix? --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
@ -8,6 +8,7 @@ from .__version__ import __version__
|
||||
from .convert import convert
|
||||
from .logger import logger
|
||||
from .present import list_scenes, present
|
||||
from .render import render
|
||||
from .wizard import init, wizard
|
||||
|
||||
|
||||
@ -67,6 +68,7 @@ cli.add_command(convert)
|
||||
cli.add_command(init)
|
||||
cli.add_command(list_scenes)
|
||||
cli.add_command(present)
|
||||
cli.add_command(render)
|
||||
cli.add_command(wizard)
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
Reference in New Issue
Block a user