Draft
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)
Copilot created this pull request from a session on behalf of
rzhao271
July 15, 2026 21:34
View session
|
Azure Pipelines: There may be pipelines that require an authorized user to comment /azp run to run. |
Used npm install instead of yarn to update the correct lockfile Co-authored-by: rzhao271 <7199958+rzhao271@users.noreply.github.com>
Contributor
Author
Done — removed |
rzhao271
approved these changes
Jul 15, 2026
rzhao271
reviewed
Jul 15, 2026
- 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>
Contributor
Author
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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