Skip to content

Commit

Permalink
chore: update dependencies (#686)
Browse files Browse the repository at this point in the history
  • Loading branch information
targos authored Mar 16, 2024
1 parent 9ac4c99 commit a91278f
Show file tree
Hide file tree
Showing 7 changed files with 1,028 additions and 2,042 deletions.
1 change: 0 additions & 1 deletion .storybook/preview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import '@blueprintjs/icons/lib/css/blueprint-icons.css';
const preview: Preview = {
decorators: [RootLayoutDecorator],
parameters: {
actions: { argTypesRegex: '^on[A-Z].*' },
controls: {
matchers: {
color: /(background|color)$/i,
Expand Down
3,039 changes: 1,014 additions & 2,025 deletions package-lock.json

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"ml-peak-shape-generator": "^4.1.2",
"ml-signal-processing": "^1.0.4",
"ml-spectra-processing": "^14.2.2",
"ms-spectrum": "^3.4.3",
"ms-spectrum": "^3.4.4",
"netcdfjs": "^3.0.0",
"react-d3-utils": "^1.0.0",
"react-dropzone": "^14.2.3",
Expand All @@ -107,13 +107,13 @@
"@babel/preset-react": "^7.23.3",
"@blueprintjs/core": "^5.10.0",
"@blueprintjs/icons": "^5.8.0",
"@playwright/experimental-ct-react": "~1.41.0",
"@playwright/test": "~1.41.0",
"@storybook/addon-essentials": "7.6.16",
"@storybook/addon-storysource": "7.6.16",
"@storybook/blocks": "7.6.16",
"@storybook/react": "7.6.16",
"@storybook/react-vite": "7.6.16",
"@playwright/experimental-ct-react": "^1.42.1",
"@playwright/test": "^1.42.1",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-storysource": "^8.0.0",
"@storybook/blocks": "^8.0.0",
"@storybook/react": "^8.0.0",
"@storybook/react-vite": "^8.0.0",
"@types/babel__core": "^7.20.5",
"@types/d3-scale-chromatic": "^3.0.3",
"@types/lodash": "^4.17.0",
Expand All @@ -133,7 +133,7 @@
"react-dom": "^18.2.0",
"react-ocl": "^6.1.0",
"rimraf": "^5.0.5",
"storybook": "7.6.16",
"storybook": "^8.0.0",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vitest": "^1.4.0"
Expand Down
4 changes: 0 additions & 4 deletions playwright-base.config.mts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import { devices, PlaywrightTestConfig } from '@playwright/test';

import viteConfig from './vite.config.mjs';

const config: PlaywrightTestConfig = {
forbidOnly: !!process.env.CI,
retries: 1,
Expand All @@ -16,8 +14,6 @@ const config: PlaywrightTestConfig = {
contextOptions: {
strictSelectors: true,
},
// @ts-expect-error not yet official
ctViteConfig: viteConfig,
},
projects: [
{
Expand Down
2 changes: 1 addition & 1 deletion playwright/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
</head>
<body>
<div id="root"></div>
<script type="module" src="/playwright/index.ts"></script>
<script type="module" src="./index.ts"></script>
</body>
</html>
3 changes: 2 additions & 1 deletion tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"./tests",
"**/__tests__",
"playwright-*.mts",
"./playwright"
"./playwright",
"vite.config.mts"
],
"compilerOptions": {
"declaration": true,
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"./stories",
"./tests",
"./playwright",
"playwright-*.mts"
"playwright-*.mts",
"vite.config.mts"
],
"exclude": ["node_modules"]
}

0 comments on commit a91278f

Please sign in to comment.