Skip to content

Commit

Permalink
deps: bump minimatch from 5.1.6 to 9.0.0 (#1232)
Browse files Browse the repository at this point in the history
* deps: bump minimatch from 5.1.6 to 9.0.0

Bumps [minimatch](https://github.com/isaacs/minimatch) from 5.1.6 to 9.0.0.
- [Release notes](https://github.com/isaacs/minimatch/releases)
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v5.1.6...v9.0.0)

---
updated-dependencies:
- dependency-name: minimatch
  dependency-type: direct:production
  update-type: version-update:semver-major
...

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

* fix: update to new minimatch exports

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: achingbrain <alex@achingbrain.net>
  • Loading branch information
dependabot[bot] and achingbrain committed Apr 27, 2023
1 parent 584ceca commit 07150fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@
"micromark-extension-gfm-strikethrough": "^1.0.4",
"micromark-extension-gfm-table": "^1.0.5",
"micromark-extension-gfm-task-list-item": "^1.0.3",
"minimatch": "^5.1.0",
"minimatch": "^9.0.0",
"mocha": "^10.0.0",
"npm-package-json-lint": "^6.3.0",
"nyc": "^15.1.0",
Expand Down
6 changes: 3 additions & 3 deletions src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { execa } from 'execa'
import extract from 'extract-zip'
import fs from 'fs-extra'
import Listr from 'listr'
import minimatch from 'minimatch'
import { minimatch } from 'minimatch'
import lockfile from 'proper-lockfile'
import { readPackageUpSync } from 'read-pkg-up'
import stripBom from 'strip-bom'
Expand Down Expand Up @@ -462,7 +462,7 @@ function checkForCircularDependencies (projects) {
*
* @param {string} dir
* @param {string} pattern
* @param {GlobOptions & import('minimatch').IOptions} [options]
* @param {GlobOptions & import('minimatch').MinimatchOptions} [options]
* @returns {AsyncGenerator<string, void, undefined>}
*/
export async function * glob (dir, pattern, options = {}) {
Expand All @@ -488,7 +488,7 @@ export async function * glob (dir, pattern, options = {}) {
* @param {string} base
* @param {string} dir
* @param {string} pattern
* @param {GlobOptions & import('minimatch').IOptions} options
* @param {GlobOptions & import('minimatch').MinimatchOptions} options
* @returns {AsyncGenerator<string, void, undefined>}
*/
async function * _glob (base, dir, pattern, options) {
Expand Down

0 comments on commit 07150fc

Please sign in to comment.