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
9 changes: 9 additions & 0 deletions apps/solid-app-start/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { defineConfig } from "vitest/config"

export default defineConfig({
test: {
include: ["**/*.{test,spec}.?(c|m)[jt]s?(x)"],
passWithNoTests: true,
environment: "jsdom",
},
})
33 changes: 14 additions & 19 deletions migrations.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,21 @@
{
"migrations": [
{
"cli": "nx",
"version": "22.1.0-beta.5",
"description": "Updates the nx wrapper.",
"implementation": "./src/migrations/update-22-1-0/update-nx-wrapper",
"package": "nx",
"name": "22-1-0-update-nx-wrapper"
"version": "22.2.0-beta.1",
"requires": {
"vitest": ">=4.0.0"
},
"description": "Create AI Instructions to help migrate users workspaces past breaking changes for Vitest 4.",
"implementation": "./src/migrations/update-22-2-0/create-ai-instructions-for-vitest-4",
"package": "@nx/vite",
"name": "update-22-2-0"
},
{
"version": "22.1.0-rc.1",
"description": "Removes redundant TypeScript project references from project's tsconfig.json files when runtime tsconfig files (e.g., tsconfig.lib.json, tsconfig.app.json) exist.",
"factory": "./src/migrations/update-22-1-0/remove-redundant-ts-project-references",
"package": "@nx/js",
"name": "remove-redundant-ts-project-references"
"version": "22.2.0-beta.2",
"description": "Migrate Vitest usage from @nx/vite to @nx/vitest package.",
"implementation": "./src/migrations/update-22-2-0/migrate-vitest-to-vitest-package",
"package": "@nx/vite",
"name": "migrate-vitest-to-vitest-package"
}
],
"nx-console": {
"initialGitRef": {
"ref": "ee034fad35176adcdace059954f4428abf7c9bcf",
"subject": "better dx for api handler"
},
"targetVersion": "latest"
}
]
}
11 changes: 10 additions & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
],
"options": {
"buildTargetName": "build",
"testTargetName": "test",
"serveTargetName": "serve",
"devTargetName": "dev",
"previewTargetName": "preview",
Expand All @@ -67,6 +66,16 @@
"options": {
"lintTargetName": "lint"
}
},
{
"plugin": "@nx/vitest",
"options": {
"testTargetName": "test"
},
"exclude": [
"apps/solid-app-start/**/*",
"apps/react-app-remix/**/*"
]
}
],
"release": {
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"@nx/node": "catalog:",
"@nx/react": "catalog:",
"@nx/vite": "catalog:",
"@nx/vitest": "22.4.5",
"@nx/web": "catalog:",
"@react-router/dev": "catalog:",
"@swc-node/register": "catalog:",
Expand All @@ -44,7 +45,7 @@
"jiti": "catalog:",
"jsdom": "catalog:",
"lint-staged": "catalog:",
"nx": "22.1.1",
"nx": "22.4.5",
"nx-oxlint": "catalog:",
"oxlint": "1.42.0",
"prettier": "catalog:",
Expand Down
2 changes: 1 addition & 1 deletion packages/node/better-auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"!**/*.tsbuildinfo"
],
"scripts": {
"test": "vitest"
"test": "vitest run"
},
"peerDependencies": {
"@effect/platform": "catalog:",
Expand Down
Binary file modified packages/prisma/prisma/dev.db
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/prisma/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"test": {
"executor": "nx:run-commands",
"options": {
"command": "vitest",
"command": "vitest run",
"cwd": "packages/prisma"
},
"dependsOn": [
Expand Down
1,830 changes: 453 additions & 1,377 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

Loading