diff --git a/lib/build.js b/lib/build.js index 0bcc9bea19..c0cb9f3904 100644 --- a/lib/build.js +++ b/lib/build.js @@ -1,9 +1,8 @@ 'use strict' const fs = require('graceful-fs').promises -const { promisify } = require('util') const path = require('path') -const glob = promisify(require('glob')) +const { glob } = require('glob') const log = require('./log') const which = require('which') const win = process.platform === 'win32' diff --git a/package.json b/package.json index a8fd8a6fff..99415b8790 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "dependencies": { "env-paths": "^2.2.0", "exponential-backoff": "^3.1.1", - "glob": "^8.0.3", + "glob": "^10.3.10", "graceful-fs": "^4.2.6", "make-fetch-happen": "^11.0.3", "nopt": "^7.0.0",