-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replaces Webpack/Babel/Mocha with Vite/Vitest (#485)
- Loading branch information
1 parent
24a1d05
commit 5e4b432
Showing
46 changed files
with
5,060 additions
and
5,991 deletions.
There are no files selected for viewing
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,25 +2,5 @@ | |
"$schema": "https://github.com/IBM/audit-ci/raw/main/docs/schema.json", | ||
"critical": true, | ||
// Only fail the audit if there are critical vulnerabilities. | ||
"allowlist": [ | ||
{ | ||
"GHSA-8cp3-66vr-3r4c": { | ||
"active": true, | ||
"expiry": "2024-10-22", | ||
// Re-evaluate this vulnerability after this date. | ||
"notes": "Transitive dependency of `superagent`, awaiting new `superagent` release." | ||
// https://github.com/ladjs/superagent/issues/1799 | ||
// Vulnerability fix only available in `[email protected]+`: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. | ||
} | ||
}, | ||
{ | ||
"GHSA-grv7-fg5c-xmjg|braces": { | ||
"active": true, | ||
"expiry": "2024-12-22", // Re-evaluate this vulnerability after this date. | ||
"notes": "Transitive dependency of `chokidar` and `micromatch`" | ||
// (`braces` -> `chokidar` -> `mocha`), chokidar unlikely to get patched: https://github.com/paulmillr/chokidar/issues/1301, mocha maintenance questionable: https://github.com/mochajs/mocha/issues/5027 | ||
// (`braces` -> `micromatch` -> `fast-glob` -> `globby` -> `typescript-eslint/typescript-estree`), micromatch is patched, but fast-glob not maintained: https://github.com/mrmlnc/fast-glob/issues/443 | ||
} | ||
} | ||
] | ||
"allowlist": [] | ||
} |
Oops, something went wrong.