This website requires JavaScript.
Explore
Main Site
Help
Register
Sign In
mirrors
/
janet
Watch
1
Star
0
Fork
0
You've already forked janet
mirror of
https://github.com/janet-lang/janet
synced
2024-11-08 09:49:58 +00:00
Code
Issues
1
Releases
Wiki
Activity
752a5a6e12
janet
/
examples
/
sample-bundle
/
mymod.janet
8 lines
95 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Add some testing to the bundle/ module.
2024-05-25 17:39:46 +00:00
(import dep1)
(import dep2)
Add `bundle/prune` and support for :auto-remove. 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.
2024-05-25 15:48:26 +00:00
(defn myfn
[x]
Add some testing to the bundle/ module.
2024-05-25 17:39:46 +00:00
(def y (dep2/function x))
(dep1/function y))
Reference in New Issue
Copy Permalink