-
Notifications
You must be signed in to change notification settings - Fork 21
Description
Some support for vendoring dependencies directly in the repo (similar to how go mod vendor would do it) would be useful.
#70 discusses some issues regarding this approach. Currently using a jpm_tree in the repo works partly, but may leave compile artifacts lying around as well as keeping the .git folder.
Some option to define a local tree in the project.janet with some subcommands to update vendored deps would be great.
Some solution to not commit compile artifacts and .git folders (a .gitignore could be added automatically or simply recommended in the docs) would be needed as well.
Lastly, some way to update the deps would be great.
If this feature should be git-specific, we could simply use git-subtrees to vendor deps in the repo. This would solve the update problem.