File tree Expand file tree Collapse file tree 5 files changed +198
-132
lines changed Expand file tree Collapse file tree 5 files changed +198
-132
lines changed Original file line number Diff line number Diff line change 1
1
recursive-include idom/client/app *
2
2
recursive-exclude idom/client/app/node_modules *
3
3
recursive-exclude idom/client/app/web_modules *
4
+ recursive-exclude idom/client/build *
4
5
include idom/py.typed
5
6
include LICENSE
6
7
include requirements/prod.txt
Original file line number Diff line number Diff line change 12
12
13
13
@main .command ()
14
14
def install (packages : List [str ]) -> None :
15
+ """Install a Javascript package from NPM"""
15
16
manage_client .build (packages )
16
17
return None
17
18
18
19
19
20
@main .command ()
20
21
def restore (clean_build : bool = True ) -> None :
21
- manage_client .build ([], clean_build = clean_build )
22
+ """Return to a fresh install of IDOM's client"""
23
+ manage_client .restore ()
22
24
return None
23
25
24
26
25
27
@show .command ()
26
28
def version () -> None :
29
+ """The version of IDOM"""
27
30
typer .echo (idom .__version__ )
You can’t perform that action at this time.
0 commit comments