From 07bec3b404af1ae329f284985edfa2f363668c4e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Mar 2023 10:27:33 -0700 Subject: [PATCH] deps: bump glob from 8.1.0 to 9.3.1 (#293) * 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/files.js | 3 +-- package.json | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/util/files.js b/lib/util/files.js index 53e58c33..5c2851cc 100644 --- a/lib/util/files.js +++ b/lib/util/files.js @@ -1,9 +1,8 @@ const { join } = require('path') const { defaultsDeep } = require('lodash') -const { promisify } = require('util') const merge = require('./merge.js') const deepMapValues = require('just-deep-map-values') -const glob = promisify(require('glob')) +const glob = require('glob') const Parser = require('./parser.js') const template = require('./template.js') diff --git a/package.json b/package.json index e5f76f79..4a12957a 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "@npmcli/package-json": "^3.0.0", "@octokit/rest": "^19.0.4", "diff": "^5.0.0", - "glob": "^8.0.1", + "glob": "^9.3.1", "handlebars": "^4.7.7", "hosted-git-info": "^6.0.0", "ini": "^3.0.1",