pkgx.yaml syntax does not support @latest? #891
-
I was surprised to see # pkgx.yaml
dependencies:
- ruby@latest
- gem@latest
- node@latest
- npm@latest
- python@latest $ cd dotfiles
× nothing provides: npm@
│ we haven’t pkgd this yet. can you?
╰─➤ https://docs.pkgx.sh/pantry If I remove the $ cd dotfiles
env +ruby-lang.org>=2.3 +nodejs.org +python.org +git-scm.org Should I just be using the same syntax, but remove the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
using this is somewhat by design (though @latest should probably be supported). dev dependencies should usually be fairly well-defined. |
Beta Was this translation helpful? Give feedback.
using
- ruby
orruby-lang.org: '*'
will install the latest version if no other version is on your machine; otherwise, it'll use the latest one on your machine if it satisfies all other constraints.this is somewhat by design (though @latest should probably be supported). dev dependencies should usually be fairly well-defined.