Skip to content

Commit

Permalink
fix(lit-form): Correct deps/devDeps/peerDeps (#818)
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlancollins authored Jul 6, 2024
1 parent fb7bc9b commit 6090ab1
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 14 deletions.
2 changes: 1 addition & 1 deletion examples/angular/array/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"test": "ng test"
},
"dependencies": {
"@tanstack/angular-form": "^0.25.2",
"@angular/animations": "^17.3.0",
"@angular/common": "^17.3.0",
"@angular/compiler": "^17.3.0",
Expand All @@ -19,6 +18,7 @@
"@angular/platform-browser": "^17.3.0",
"@angular/platform-browser-dynamic": "^17.3.0",
"@angular/router": "^17.3.0",
"@tanstack/angular-form": "^0.25.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.2"
Expand Down
2 changes: 1 addition & 1 deletion examples/angular/simple/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"test": "ng test"
},
"dependencies": {
"@tanstack/angular-form": "^0.25.2",
"@angular/animations": "^17.3.0",
"@angular/common": "^17.3.0",
"@angular/compiler": "^17.3.0",
Expand All @@ -19,6 +18,7 @@
"@angular/platform-browser": "^17.3.0",
"@angular/platform-browser-dynamic": "^17.3.0",
"@angular/router": "^17.3.0",
"@tanstack/angular-form": "^0.25.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.2"
Expand Down
4 changes: 2 additions & 2 deletions examples/angular/valibot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
"test": "ng test"
},
"dependencies": {
"@tanstack/angular-form": "^0.25.2",
"@tanstack/valibot-form-adapter": "^0.25.2",
"@angular/animations": "^17.3.0",
"@angular/common": "^17.3.0",
"@angular/compiler": "^17.3.0",
Expand All @@ -20,6 +18,8 @@
"@angular/platform-browser": "^17.3.0",
"@angular/platform-browser-dynamic": "^17.3.0",
"@angular/router": "^17.3.0",
"@tanstack/angular-form": "^0.25.2",
"@tanstack/valibot-form-adapter": "^0.25.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"valibot": "^0.35.0",
Expand Down
4 changes: 2 additions & 2 deletions examples/angular/yup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
"test": "ng test"
},
"dependencies": {
"@tanstack/angular-form": "^0.25.2",
"@tanstack/yup-form-adapter": "^0.25.2",
"@angular/animations": "^17.3.0",
"@angular/common": "^17.3.0",
"@angular/compiler": "^17.3.0",
Expand All @@ -20,6 +18,8 @@
"@angular/platform-browser": "^17.3.0",
"@angular/platform-browser-dynamic": "^17.3.0",
"@angular/router": "^17.3.0",
"@tanstack/angular-form": "^0.25.2",
"@tanstack/yup-form-adapter": "^0.25.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"yup": "^1.3.2",
Expand Down
4 changes: 2 additions & 2 deletions examples/angular/zod/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
"test": "ng test"
},
"dependencies": {
"@tanstack/angular-form": "^0.25.2",
"@tanstack/zod-form-adapter": "^0.25.2",
"@angular/animations": "^17.3.0",
"@angular/common": "^17.3.0",
"@angular/compiler": "^17.3.0",
Expand All @@ -20,6 +18,8 @@
"@angular/platform-browser": "^17.3.0",
"@angular/platform-browser-dynamic": "^17.3.0",
"@angular/router": "^17.3.0",
"@tanstack/angular-form": "^0.25.2",
"@tanstack/zod-form-adapter": "^0.25.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zod": "^3.22.4",
Expand Down
4 changes: 2 additions & 2 deletions examples/lit/ui-libraries/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"test:types": "tsc"
},
"dependencies": {
"@material/web": "^1.0.0",
"@tanstack/lit-form": "^0.25.2",
"lit": "^3.1.1",
"@material/web": "^1.0.0"
"lit": "^3.1.1"
},
"devDependencies": {
"vite": "^5.1.4"
Expand Down
2 changes: 1 addition & 1 deletion examples/react/query-integration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"test:types": "tsc"
},
"dependencies": {
"@tanstack/react-query": "^5.32.0",
"@tanstack/react-form": "^0.25.2",
"@tanstack/react-query": "^5.32.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
Expand Down
5 changes: 4 additions & 1 deletion packages/lit-form/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@
"dependencies": {
"@tanstack/form-core": "workspace:*"
},
"peerDependencies": {
"devDependencies": {
"lit": "^3.1.1"
},
"peerDependencies": {
"lit": "^3.0.0"
}
}
4 changes: 2 additions & 2 deletions packages/react-form/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@
"src"
],
"dependencies": {
"@remix-run/node": "^2.9.2",
"@tanstack/form-core": "workspace:*",
"@tanstack/react-store": "^0.5.0",
"decode-formdata": "^0.7.5",
"@remix-run/node": "^2.9.2"
"decode-formdata": "^0.7.5"
},
"devDependencies": {
"@tanstack/start": "^1.42.1",
Expand Down
1 change: 1 addition & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6090ab1

Please sign in to comment.