From 978c4164368a5821284a62a051cb996728a10d93 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Apr 2023 09:14:58 -0700 Subject: [PATCH] deps: bump glob from 9.3.5 to 10.2.2 (#106) * deps: bump glob from 9.3.5 to 10.2.2 Bumps [glob](https://github.com/isaacs/node-glob) from 9.3.5 to 10.2.2. - [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/v9.3.5...v10.2.2) --- updated-dependencies: - dependency-name: glob dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * chore: fixup usage of glob@10 --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: nlf --- lib/index.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/index.js b/lib/index.js index 93abc29..501dad8 100644 --- a/lib/index.js +++ b/lib/index.js @@ -3,7 +3,7 @@ const path = require('path') const getName = require('@npmcli/name-from-folder') const { minimatch } = require('minimatch') const rpj = require('read-package-json-fast') -const glob = require('glob') +const { glob } = require('glob') function appendNegatedPatterns (patterns) { const results = [] diff --git a/package.json b/package.json index 5df4beb..1082a39 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,7 @@ }, "dependencies": { "@npmcli/name-from-folder": "^2.0.0", - "glob": "^9.3.1", + "glob": "^10.2.2", "minimatch": "^9.0.0", "read-package-json-fast": "^3.0.0" },