Skip to content

Commit

Permalink
chore(deps-dev): bump stylelint from 15.7.0 to 15.10.1 (#14162)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump stylelint from 15.7.0 to 15.10.1

Bumps [stylelint](https://github.com/stylelint/stylelint) from 15.7.0 to 15.10.1.
- [Release notes](https://github.com/stylelint/stylelint/releases)
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md)
- [Commits](stylelint/stylelint@15.7.0...15.10.1)

---
updated-dependencies:
- dependency-name: stylelint
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(yarn): run yarn dedupe

* fix(cli): correct fast-glob param type

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alison Joseph <alison.joseph@us.ibm.com>
Co-authored-by: TJ Egan <tw15egan@gmail.com>
Co-authored-by: Taylor Jones <taylor.jones826@gmail.com>
Co-authored-by: Taylor Jones <tay1orjones@users.noreply.github.com>
  • Loading branch information
5 people authored Jul 18, 2023
1 parent 77157e2 commit f8a0c34
Show file tree
Hide file tree
Showing 27 changed files with 147 additions and 61 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed .yarn/cache/meow-npm-9.0.0-8b2707248e-99799c4724.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 6 additions & 0 deletions packages/cli/src/commands/check.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ async function check({ glob: pattern, ignore = [], list = false }) {
logger.info(`Running in: ${cwd}`);
logger.info(`Checking pattern: '${pattern}', ignoring: '${ignore}'`);

// fast-glob's ignore option only accepts an array of strings, not a string
// See: https://github.com/mrmlnc/fast-glob/issues/404#issuecomment-1624832288
if (typeof ignore === 'string') {
ignore = [ignore];
}

const files = await glob(pattern, {
cwd,
ignore,
Expand Down
Loading

0 comments on commit f8a0c34

Please sign in to comment.