-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Bump dependencies shown in `pnpm audit` that have valid patches - Update SBOM workflow for security updates - Remove project-specific `resolutions` fields (these had no effect on dependency resolution)
- Loading branch information
Showing
11 changed files
with
611 additions
and
1,797 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,11 +5,10 @@ name: SBOM upload | |
|
||
on: | ||
push: | ||
branches: ["main"] | ||
branches: ['main'] | ||
|
||
jobs: | ||
SBOM-upload: | ||
|
||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: write | ||
|
@@ -28,6 +27,6 @@ jobs: | |
name: sbom | ||
path: _manifest/spdx_2.2 | ||
- name: SBOM upload | ||
uses: jhutchings1/spdx-to-dependency-graph[email protected].2 | ||
uses: advanced-security/spdx-dependency-submission[email protected].1 | ||
with: | ||
filePath: "_manifest/spdx_2.2/" | ||
filePath: '_manifest/spdx_2.2/' |
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
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
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
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
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 |
---|---|---|
@@ -1,22 +1,22 @@ | ||
import { defineConfig, mergeConfig } from "vitest/config"; | ||
import viteConfig from "./vite-config.js"; | ||
|
||
import { defineConfig, mergeConfig } from 'vitest/config' | ||
import viteConfig from './vite-config.js' | ||
import type { UserConfig } from 'vite' | ||
export default mergeConfig( | ||
viteConfig, | ||
viteConfig as UserConfig, | ||
defineConfig({ | ||
optimizeDeps: { | ||
exclude: ["vitest/utils"], | ||
include: ["@vitest/utils", "vitest/browser"], | ||
exclude: ['vitest/utils'], | ||
include: ['@vitest/utils', 'vitest/browser'], | ||
}, | ||
test: { | ||
environment: "jsdom", | ||
reporters: ["default", "html"], | ||
outputFile: { html: "./coverage/report/index.html" }, | ||
environment: 'jsdom', | ||
reporters: ['default', 'html'], | ||
outputFile: { html: './coverage/report/index.html' }, | ||
coverage: { | ||
provider: "c8", | ||
reporter: ["text-summary", "html-spa"], | ||
reportsDirectory: "./coverage/cov", | ||
provider: 'c8', | ||
reporter: ['text-summary', 'html-spa'], | ||
reportsDirectory: './coverage/cov', | ||
}, | ||
}, | ||
}) | ||
); | ||
}) as UserConfig, | ||
) |
Oops, something went wrong.