From a6dd005da900de139f575caab660046e88974e0a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Mar 2023 09:10:35 -0700 Subject: [PATCH] deps: bump glob from 8.1.0 to 9.3.1 (#176) * 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](https://github.com/isaacs/node-glob/compare/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] * fixup: glob is promisified now --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gar --- lib/util/glob.js | 3 +-- package.json | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/util/glob.js b/lib/util/glob.js index 8908a3a..38b5459 100644 --- a/lib/util/glob.js +++ b/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) diff --git a/package.json b/package.json index f14475c..b90d33d 100644 --- a/package.json +++ b/package.json @@ -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",