mirror of
https://github.com/janet-lang/janet
synced 2024-11-08 17:59:55 +00:00
7387a1d91e
This allows dependencies to be marked such that they are not primary dependencies installed by the users - rather, they are dependencies of dependencies. This distinction is important when a user installs a package that itself has dependencies. This also interacts with new features to prevent a user from breaking their installation by installing needed packages or installing/uninstalling bundles out of order.
4 lines
73 B
Plaintext
4 lines
73 B
Plaintext
(defn install
|
|
[manifest &]
|
|
(bundle/add-file manifest "mymod.janet"))
|