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
12 changes: 1 addition & 11 deletions .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,7 @@
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"fixed": [
[
"@tanstack/form-core",
"@tanstack/angular-form",
"@tanstack/lit-form",
"@tanstack/react-form",
"@tanstack/solid-form",
"@tanstack/svelte-form",
"@tanstack/vue-form"
]
],
"fixed": [],
"linked": [],
"ignore": []
}
12 changes: 8 additions & 4 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
## 🎯 Changes

<!-- What changes are made in this PR? Is it a feature or a package submission? -->
<!-- What changes are made in this PR? Describe the change and its motivation. -->

## ✅ Checklist

- [ ] I have followed the steps listed in the [Contributing guide](https://github.com/TanStack/form/blob/main/CONTRIBUTING.md).
- [ ] I have tested and linted this code locally.
- [ ] I have generated a [changeset](https://github.com/changesets/changesets/blob/main/docs/adding-a-changeset.md) for this PR, or this PR should not release a new version.
- [ ] I have followed the steps in the [Contributing guide](https://github.com/TanStack/form/blob/main/CONTRIBUTING.md).
- [ ] I have tested this code locally with `pnpm test:pr`.

## 🚀 Release Impact

- [ ] This change affects published code, and I have generated a [changeset](https://github.com/changesets/changesets/blob/main/docs/adding-a-changeset.md).
- [ ] This change is docs/CI/dev-only (no release).
2 changes: 0 additions & 2 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
link-workspace-packages=true
prefer-workspace-packages=true
provenance=true
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.4.1
24.8.0
4 changes: 2 additions & 2 deletions examples/react/compiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.7.0",
"babel-plugin-react-compiler": "19.0.0-beta-ebf51a3-20250411",
"eslint-plugin-react-compiler": "19.0.0-beta-ebf51a3-20250411",
"babel-plugin-react-compiler": "19.1.0-rc.3",
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"vite": "^7.1.6"
},
"browserslist": {
Expand Down
15 changes: 4 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
"packageManager": "pnpm@10.17.0",
"type": "module",
"scripts": {
"changeset": "changeset",
"changeset:publish": "changeset publish",
"changeset:version": "changeset version && pnpm install --no-frozen-lockfile && pnpm prettier:write",
"clean": "pnpm --filter \"./packages/**\" run clean",
"preinstall": "node -e \"if(process.env.CI == 'true') {console.log('Skipping preinstall...')} else {process.exit(1)}\" || npx -y only-allow pnpm",
"test": "pnpm run test:ci",
Expand All @@ -32,7 +29,9 @@
"prettier:write": "pnpm run prettier --write",
"docs:generate": "node scripts/generateDocs.ts",
"verify-links": "node scripts/verify-links.ts",
"cipublish": "node scripts/publish.ts"
"changeset": "changeset",
"changeset:publish": "changeset publish",
"changeset:version": "changeset version && pnpm install --no-frozen-lockfile && pnpm prettier:write"
},
"nx": {
"includedScripts": [
Expand All @@ -54,7 +53,7 @@
"@vitest/coverage-istanbul": "^3.2.4",
"eslint": "9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"jsdom": "^26.1.0",
"jsdom": "^27.0.0",
"knip": "^5.63.1",
"markdown-link-extractor": "^4.0.2",
"nx": "21.5.3",
Expand All @@ -70,11 +69,5 @@
"typescript57": "npm:typescript@5.9.2",
"vite": "^7.1.6",
"vitest": "^3.2.4"
},
"pnpm": {
"//": "https://github.com/jsdom/cssstyle/issues/182",
"overrides": {
"cssstyle": "4.6.0"
}
}
}
2 changes: 1 addition & 1 deletion packages/react-form-devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"devDependencies": {
"@types/react": "^19.0.7",
"@vitejs/plugin-react": "^4.7.0",
"eslint-plugin-react-compiler": "19.0.0-beta-ebf51a3-20250411",
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"react": "^19.0.0",
"vite": "^7.1.6"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/react-form/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.7.0",
"eslint-plugin-react-compiler": "19.0.0-beta-ebf51a3-20250411",
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"vite": "^7.1.6"
Expand Down
256 changes: 149 additions & 107 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

73 changes: 11 additions & 62 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,63 +1,12 @@
//: https://github.com/jsdom/cssstyle/issues/182
cleanupUnusedCatalogs: true
linkWorkspacePackages: true
preferWorkspacePackages: true

packages:
- 'packages/**'
- 'examples/angular/**'
- 'examples/react/**'
- 'examples/solid/**'
- 'examples/vue/**'
- 'examples/lit/**'
- 'examples/svelte/**'
catalog:
'@eslint-react/eslint-plugin': ^1.53.1
'@solidjs/testing-library': ^0.8.10
'@tanstack/config': 0.20.2
'@tanstack/devtools-event-client': ^0.3.0
'@tanstack/devtools-ui': ^0.3.5
'@tanstack/react-devtools': ^0.7.0
'@tanstack/react-form': workspace:*
'@tanstack/react-start': ^1.131.50
'@tanstack/react-store': ^0.7.7
'@tanstack/solid-store': ^0.7.7
'@tanstack/store': ^0.7.7
'@testing-library/jest-dom': ^6.8.0
'@testing-library/react': ^16.3.0
'@testing-library/user-event': ^14.6.1
'@testing-library/vue': ^8.1.0
'@types/node': ^24.1.0
'@types/react': ^19.0.7
'@types/react-dom': ^19.0.3
'@vitejs/plugin-react': ^4.7.0
'@vitest/coverage-istanbul': ^3.2.4
arktype: ^2.1.22
clsx: ^2.1.1
dayjs: ^1.11.18
decode-formdata: ^0.9.0
devalue: ^5.3.2
eslint: 9.36.0
eslint-plugin-react-compiler: 19.0.0-beta-ebf51a3-20250411
eslint-plugin-react-hooks: ^5.2.0
goober: ^2.1.16
jsdom: ^26.1.0
knip: ^5.63.1
markdown-link-extractor: ^4.0.2
nx: 21.5.3
premove: ^4.0.0
prettier: ^3.6.2
publint: ^0.3.13
react: ^19.0.0
react-dom: ^19.0.0
sherif: ^1.6.1
solid-js: ^1.9.9
tinyglobby: ^0.2.15
typescript: 5.8.2
typescript54: npm:typescript@5.9.2
typescript55: npm:typescript@5.9.2
typescript56: npm:typescript@5.9.2
typescript57: npm:typescript@5.9.2
valibot: ^1.1.0
vite: ^7.1.6
vite-plugin-solid: ^2.11.8
vitest: ^3.2.4
zod: ^3.25.76
overrides:
cssstyle: 4.6.0
- packages/**
- examples/angular/**
- examples/react/**
- examples/solid/**
- examples/vue/**
- examples/lit/**
- examples/svelte/**
57 changes: 0 additions & 57 deletions scripts/publish.ts

This file was deleted.

Loading