If I go the many SDF projects path, how do I share libraries without downloading it to my computer on every project?
l
lukeabbott
04/04/2022, 8:16 PM
You can reference other files via module paths.
s
Shawn Talbert
04/05/2022, 12:49 AM
you can use a package manager to manage dependencies (i.e. publish to a binary repository like npm or similar) or use some facility in your version control system (e.g. with git can be submodules or subtrees)
however, in both those cases, you'd download a particular version of the dependency to your computer, by design.