When I execute jupyter labextension --help
the “Examples” are:
Examples
--------
jupyter labextension list # list all configured labextensions
jupyter labextension develop # develop a prebuilt labextension
jupyter labextension build # build a prebuilt labextension
jupyter labextension watch # watch a prebuilt labextension
jupyter labextension install <extension name> # install a labextension
jupyter labextension uninstall <extension name> # uninstall a labextension
Where it says “build a prebuilt labextension”, I am a little confused about what is meant by “build” and “prebuilt” in this sentence. What specifically is meant by “build” and “prebuilt” in this context? How does the result of executing jupyter labextension build
differ from the the result of executing jlpm run build
? When would I execute jupyter labextension build
?
I think I’m trying to discern the difference between each build state of the project.