snippets/old_snippets/update-local-zef-module.en.md

516 B

title date seo_description draft snippet_types
update a local zef module 2021-10-20T20:28:05+02:00 code snippet explainin how to install raku/zef modules locally false
raku
zef

Lately I've been working locally with raku/zef modules for my CLI apps. I install them with:

$ zef install .

Turns out you can update a package very similarity. Just bump the version in the META6.json and run the same command again.

$ zef install .

docs