Skip to content

Commit

Permalink
deps: bump glob from 8.1.0 to 9.3.1 (#176)
Browse files Browse the repository at this point in the history
* deps: bump glob from 8.1.0 to 9.3.1

Bumps [glob](https://github.com/isaacs/node-glob) from 8.1.0 to 9.3.1.
- [Release notes](https://github.com/isaacs/node-glob/releases)
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md)
- [Commits](isaacs/node-glob@v8.1.0...v9.3.1)

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

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

* fixup: glob is promisified now

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Gar <gar+gh@danger.computer>
  • Loading branch information
dependabot[bot] and wraithgar committed Mar 21, 2023
1 parent 0f3a8ef commit a6dd005
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions lib/util/glob.js
@@ -1,7 +1,6 @@
'use strict'

const { promisify } = require('util')
const glob = promisify(require('glob'))
const glob = require('glob')

const globify = (pattern) => pattern.split('//').join('/')
module.exports = (path, options) => glob(globify(path), options)
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -47,7 +47,7 @@
"dependencies": {
"@npmcli/fs": "^3.1.0",
"fs-minipass": "^3.0.0",
"glob": "^8.0.1",
"glob": "^9.3.1",
"lru-cache": "^7.7.1",
"minipass": "^4.0.0",
"minipass-collect": "^1.0.2",
Expand Down

0 comments on commit a6dd005

Please sign in to comment.