Skip to content

Commit dba5d70

Browse files
chore: update workspace config (#1755)
* chore: update workspace config * Remove publish.ts script
1 parent 7778f3d commit dba5d70

File tree

11 files changed

+178
-259
lines changed

11 files changed

+178
-259
lines changed

.changeset/config.json

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,7 @@
88
"access": "public",
99
"baseBranch": "main",
1010
"updateInternalDependencies": "patch",
11-
"fixed": [
12-
[
13-
"@tanstack/form-core",
14-
"@tanstack/angular-form",
15-
"@tanstack/lit-form",
16-
"@tanstack/react-form",
17-
"@tanstack/solid-form",
18-
"@tanstack/svelte-form",
19-
"@tanstack/vue-form"
20-
]
21-
],
11+
"fixed": [],
2212
"linked": [],
2313
"ignore": []
2414
}

.github/pull_request_template.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
## 🎯 Changes
22

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

55
## ✅ Checklist
66

7-
- [ ] I have followed the steps listed in the [Contributing guide](https://github.com/TanStack/form/blob/main/CONTRIBUTING.md).
8-
- [ ] I have tested and linted this code locally.
9-
- [ ] 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.
7+
- [ ] I have followed the steps in the [Contributing guide](https://github.com/TanStack/form/blob/main/CONTRIBUTING.md).
8+
- [ ] I have tested this code locally with `pnpm test:pr`.
9+
10+
## 🚀 Release Impact
11+
12+
- [ ] This change affects published code, and I have generated a [changeset](https://github.com/changesets/changesets/blob/main/docs/adding-a-changeset.md).
13+
- [ ] This change is docs/CI/dev-only (no release).

.npmrc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
link-workspace-packages=true
2-
prefer-workspace-packages=true
31
provenance=true

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
24.4.1
1+
24.8.0

examples/react/compiler/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"@types/react": "^19.0.7",
1818
"@types/react-dom": "^19.0.3",
1919
"@vitejs/plugin-react": "^4.7.0",
20-
"babel-plugin-react-compiler": "19.0.0-beta-ebf51a3-20250411",
21-
"eslint-plugin-react-compiler": "19.0.0-beta-ebf51a3-20250411",
20+
"babel-plugin-react-compiler": "19.1.0-rc.3",
21+
"eslint-plugin-react-compiler": "19.1.0-rc.2",
2222
"vite": "^7.1.6"
2323
},
2424
"browserslist": {

package.json

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88
"packageManager": "[email protected]",
99
"type": "module",
1010
"scripts": {
11-
"changeset": "changeset",
12-
"changeset:publish": "changeset publish",
13-
"changeset:version": "changeset version && pnpm install --no-frozen-lockfile && pnpm prettier:write",
1411
"clean": "pnpm --filter \"./packages/**\" run clean",
1512
"preinstall": "node -e \"if(process.env.CI == 'true') {console.log('Skipping preinstall...')} else {process.exit(1)}\" || npx -y only-allow pnpm",
1613
"test": "pnpm run test:ci",
@@ -32,7 +29,9 @@
3229
"prettier:write": "pnpm run prettier --write",
3330
"docs:generate": "node scripts/generateDocs.ts",
3431
"verify-links": "node scripts/verify-links.ts",
35-
"cipublish": "node scripts/publish.ts"
32+
"changeset": "changeset",
33+
"changeset:publish": "changeset publish",
34+
"changeset:version": "changeset version && pnpm install --no-frozen-lockfile && pnpm prettier:write"
3635
},
3736
"nx": {
3837
"includedScripts": [
@@ -54,7 +53,7 @@
5453
"@vitest/coverage-istanbul": "^3.2.4",
5554
"eslint": "9.36.0",
5655
"eslint-plugin-react-hooks": "^5.2.0",
57-
"jsdom": "^26.1.0",
56+
"jsdom": "^27.0.0",
5857
"knip": "^5.63.1",
5958
"markdown-link-extractor": "^4.0.2",
6059
"nx": "21.5.3",
@@ -70,11 +69,5 @@
7069
"typescript57": "npm:[email protected]",
7170
"vite": "^7.1.6",
7271
"vitest": "^3.2.4"
73-
},
74-
"pnpm": {
75-
"//": "https://github.com/jsdom/cssstyle/issues/182",
76-
"overrides": {
77-
"cssstyle": "4.6.0"
78-
}
7972
}
8073
}

packages/react-form-devtools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"devDependencies": {
5858
"@types/react": "^19.0.7",
5959
"@vitejs/plugin-react": "^4.7.0",
60-
"eslint-plugin-react-compiler": "19.0.0-beta-ebf51a3-20250411",
60+
"eslint-plugin-react-compiler": "19.1.0-rc.2",
6161
"react": "^19.0.0",
6262
"vite": "^7.1.6"
6363
},

packages/react-form/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
"@types/react": "^19.0.7",
9292
"@types/react-dom": "^19.0.3",
9393
"@vitejs/plugin-react": "^4.7.0",
94-
"eslint-plugin-react-compiler": "19.0.0-beta-ebf51a3-20250411",
94+
"eslint-plugin-react-compiler": "19.1.0-rc.2",
9595
"react": "^19.0.0",
9696
"react-dom": "^19.0.0",
9797
"vite": "^7.1.6"

pnpm-lock.yaml

Lines changed: 149 additions & 107 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 11 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,12 @@
1-
//: https://github.com/jsdom/cssstyle/issues/182
1+
cleanupUnusedCatalogs: true
2+
linkWorkspacePackages: true
3+
preferWorkspacePackages: true
4+
25
packages:
3-
- 'packages/**'
4-
- 'examples/angular/**'
5-
- 'examples/react/**'
6-
- 'examples/solid/**'
7-
- 'examples/vue/**'
8-
- 'examples/lit/**'
9-
- 'examples/svelte/**'
10-
catalog:
11-
'@eslint-react/eslint-plugin': ^1.53.1
12-
'@solidjs/testing-library': ^0.8.10
13-
'@tanstack/config': 0.20.2
14-
'@tanstack/devtools-event-client': ^0.3.0
15-
'@tanstack/devtools-ui': ^0.3.5
16-
'@tanstack/react-devtools': ^0.7.0
17-
'@tanstack/react-form': workspace:*
18-
'@tanstack/react-start': ^1.131.50
19-
'@tanstack/react-store': ^0.7.7
20-
'@tanstack/solid-store': ^0.7.7
21-
'@tanstack/store': ^0.7.7
22-
'@testing-library/jest-dom': ^6.8.0
23-
'@testing-library/react': ^16.3.0
24-
'@testing-library/user-event': ^14.6.1
25-
'@testing-library/vue': ^8.1.0
26-
'@types/node': ^24.1.0
27-
'@types/react': ^19.0.7
28-
'@types/react-dom': ^19.0.3
29-
'@vitejs/plugin-react': ^4.7.0
30-
'@vitest/coverage-istanbul': ^3.2.4
31-
arktype: ^2.1.22
32-
clsx: ^2.1.1
33-
dayjs: ^1.11.18
34-
decode-formdata: ^0.9.0
35-
devalue: ^5.3.2
36-
eslint: 9.36.0
37-
eslint-plugin-react-compiler: 19.0.0-beta-ebf51a3-20250411
38-
eslint-plugin-react-hooks: ^5.2.0
39-
goober: ^2.1.16
40-
jsdom: ^26.1.0
41-
knip: ^5.63.1
42-
markdown-link-extractor: ^4.0.2
43-
nx: 21.5.3
44-
premove: ^4.0.0
45-
prettier: ^3.6.2
46-
publint: ^0.3.13
47-
react: ^19.0.0
48-
react-dom: ^19.0.0
49-
sherif: ^1.6.1
50-
solid-js: ^1.9.9
51-
tinyglobby: ^0.2.15
52-
typescript: 5.8.2
53-
typescript54: npm:[email protected]
54-
typescript55: npm:[email protected]
55-
typescript56: npm:[email protected]
56-
typescript57: npm:[email protected]
57-
valibot: ^1.1.0
58-
vite: ^7.1.6
59-
vite-plugin-solid: ^2.11.8
60-
vitest: ^3.2.4
61-
zod: ^3.25.76
62-
overrides:
63-
cssstyle: 4.6.0
6+
- packages/**
7+
- examples/angular/**
8+
- examples/react/**
9+
- examples/solid/**
10+
- examples/vue/**
11+
- examples/lit/**
12+
- examples/svelte/**

0 commit comments

Comments
 (0)