Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 24 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,44 +49,43 @@
"devDependencies": {
"@eslint-react/eslint-plugin": "3.0.0-rc.0",
"@eslint/markdown": "^7.5.1",
"@faker-js/faker": "^10.0.0",
"@tanstack/react-router": "^1.132.31",
"@tanstack/router-plugin": "^1.132.31",
"@types/node": "^25.0.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/browser-playwright": "^4.0.16",
"@vitest/coverage-istanbul": "^4.0.16",
"@vitest/eslint-plugin": "^1.6.4",
"@faker-js/faker": "^10.3.0",
"@tanstack/react-router": "^1.166.7",
"@tanstack/router-plugin": "^1.166.7",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser-playwright": "^4.1.0",
"@vitest/coverage-istanbul": "^4.1.0",
"@vitest/eslint-plugin": "^1.6.11",
"clsx": "^2.1.1",
"ecij": "^0.4.1",
"eslint": "^10.0.1",
"eslint": "^10.0.3",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-sonarjs": "^4.0.0",
"eslint-plugin-testing-library": "^7.13.5",
"jspdf": "^4.0.0",
"jspdf-autotable": "^5.0.2",
"oxfmt": "0.38.0",
"eslint-plugin-sonarjs": "^4.0.2",
"eslint-plugin-testing-library": "^7.16.0",
"jspdf": "^4.2.0",
"jspdf-autotable": "^5.0.7",
"oxfmt": "0.40.0",
"playwright": "~1.58.0",
"postcss": "^8.5.2",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rolldown": "1.0.0-rc.5",
"rolldown-plugin-dts": "^0.22.1",
"rolldown-plugin-dts": "^0.22.5",
"typescript": "~6.0.1-rc",
"typescript-eslint": "^8.56.0",
"vite": "^8.0.0-beta.16",
"vitest": "^4.0.17",
"vitest-browser-react": "^2.0.2"
"typescript-eslint": "^8.57.0",
"vite": "^8.0.0",
"vitest": "^4.1.0",
"vitest-browser-react": "^2.1.0"
},
"peerDependencies": {
"react": "^19.2",
"react-dom": "^19.2"
},
"overrides": {
"typescript": "$typescript",
"vite": "$vite"
"typescript": "$typescript"
}
}
3 changes: 2 additions & 1 deletion test/browser/column/key.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ test('key is escaped in query selectors', async () => {
}
];

await expect(setup({ columns, rows: [] })).resolves.not.toThrowError();
// eslint-disable-next-line vitest/no-alias-methods
await expect(setup({ columns, rows: [] })).resolves.not.toThrow();
});
5 changes: 2 additions & 3 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,7 @@ export default defineConfig(
routesDirectory: 'website/routes',
autoCodeSplitting: true
}),
react({
exclude: ['./.cache/**/*', './node_modules/**/*', './website/routeTree.gen.ts']
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this needed?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mmh...
Maybe it's time we move all our .cache configs to node_modules/.cache to ensure all tools ignore it by default?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds good!

})
react()
],
server: {
open: true
Expand Down Expand Up @@ -142,6 +140,7 @@ export default defineConfig(
instances: getInstances(),
viewport,
headless: true,
ui: false,
screenshotFailures: false
},
setupFiles: ['test/setupBrowser.ts', 'test/failOnConsole.ts']
Expand Down
Loading