Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1.8k
chore: updating minimatch#19434
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
chore: updating minimatch #19434
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -72,7 +72,7 @@ | ||
| "@sentry/core": "10.40.0", | ||
| "@sentry/node": "10.40.0", | ||
| "@sentry/react": "10.40.0", | ||
| "glob": "^10.3.4", | ||
| "glob": "^13.0.6", | ||
isaacs marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. isaacs marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| "yargs": "^17.6.0" | ||
| }, | ||
| "devDependencies": { | ||
isaacs marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. isaacs marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -2,13 +2,13 @@ | ||
| const fs = require('fs'); | ||
| const path = require('path'); | ||
| const glob = require('glob'); | ||
| const { globSync } = require('glob'); | ||
| function deleteSourcemaps(buildPath) { | ||
| console.info(`[sentry] Deleting sourcemaps from ${buildPath}`); | ||
| // Delete all .map files in the build folder and its subfolders | ||
| const mapFiles = glob.sync('**/*.map', { cwd: buildPath }); | ||
| const mapFiles = globSync('**/*.map', { cwd: buildPath }); | ||
| mapFiles.forEach(file => { | ||
| fs.unlinkSync(path.join(buildPath, file)); | ||
isaacs marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.