Skip to content

Commit

Permalink
deps: bump glob from 8.1.0 to 9.3.1 (#293)
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 fb95639 commit 07bec3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions lib/util/files.js
Original file line number Diff line number Diff line change
@@ -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')

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 07bec3b

Please sign in to comment.