Add missing packer migration item for cond

Add missing packer migration item for `cond`
This commit is contained in:
Heechul Ryu 2022-12-26 00:05:10 -08:00 committed by GitHub
commit 4aa83eb1a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -629,7 +629,8 @@ For a real-life example, you can check my personal dots:
- `opt` ➡️ `lazy` - `opt` ➡️ `lazy`
- `run` ➡️ `build` - `run` ➡️ `build`
- `lock` ➡️ `pin` - `lock` ➡️ `pin`
- `disable=true` ➡️ `enabled = false` - `disable = true` ➡️ `enabled = false`
- `cond = fun():boolean` ➡️ `enabled = fun():boolean`
- `tag='*'` ➡️ `version="*"` - `tag='*'` ➡️ `version="*"`
- `after` **_not needed_** for most use-cases. Use `dependencies` otherwise. - `after` **_not needed_** for most use-cases. Use `dependencies` otherwise.
- `wants` **_not needed_** for most use-cases. Use `dependencies` otherwise. - `wants` **_not needed_** for most use-cases. Use `dependencies` otherwise.