conventional-commits-detector
conventional-commits-detector copied to clipboard
fix(deps): update dependency meow to v10
This PR contains the following updates:
Package | Change | Age | Adoption | Passing | Confidence |
---|---|---|---|---|---|
meow | ^7.0.0 -> ^10.0.0 |
Release Notes
sindresorhus/meow
v10.1.3
v10.1.2
v10.1.1
v10.1.0
v10.0.1
v10.0.0
Breaking
- Require Node.js 12 (#181)
05320ac
- This package is now pure ESM. Please read this.
- You must now pass in the
importMeta
option someow
can find your package.json:
const cli = meow(…, {
+ importMeta: import.meta
});
Previously, meow
used some tricks to infer the location of your package.json, but this no longer works in ESM.
v9.0.0
Breaking
- Strictly validate flag config (#168)
1609709
This is a breaking change if you incorrectly used kebab-case format for flags (was never officially supported) in themeow
config:
meow(``, {
flags: {
- 'foo-bar': {
+ fooBar: {
type: 'boolean'
}
}
});
v8.1.2
v8.1.1
v8.1.0
- Add
allowUnknownFlags
options (#169)a27ff12
v8.0.0
Breaking
- Default
isMultiple
option to empty array (#163)14924de
- Make
isMultiple
option non-greedy (#162)49ce74d
Fixes
v7.1.1
v7.1.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, click this checkbox.
This PR has been generated by Mend Renovate. View repository job log here.