chore: bump glob from 7.1.6 to 13.0.6 - #8850
chore: bump glob from 7.1.6 to 13.0.6#8850Raymond Zhao (rzhao271) with Copilot wants to merge 3 commits into
Conversation
- Upgrade glob devDependency from 7.1.6 to 13.0.6 - Remove @types/glob (types are now bundled with glob v9+) - Fix import in src/test/index.ts: default import → namespace import (glob v13 has no default export)
|
Azure Pipelines: There may be pipelines that require an authorized user to comment /azp run to run. |
Raymond Zhao (rzhao271)
left a comment
There was a problem hiding this comment.
Copilot Remove the new yarn lock file and update whichever lockfile existed before instead.
Used npm install instead of yarn to update the correct lockfile Co-authored-by: rzhao271 <7199958+rzhao271@users.noreply.github.com>
Done — removed |
Raymond Zhao (rzhao271)
left a comment
There was a problem hiding this comment.
Copilot Fix tests
- Replace callback-based util.promisify(require('glob')) with the
native promise-based named export { glob } from glob v13
- Add copyright header (required by hygiene)
- Fix whitespace indentation in usage template literal
Co-authored-by: rzhao271 <7199958+rzhao271@users.noreply.github.com>
|
Upgrades
globfrom v7 to v13 (latest). glob v9+ bundles its own types, so@types/globis removed. glob v13 also drops the default export, requiring a fix to the one import in the codebase.Changes
package.json:glob7.1.6→13.0.6; drop@types/globsrc/test/index.ts: Default import → namespace import;glob.sync()remains available as a named export