Skip to content

Commit

Permalink
chore: update tooling deps (#2230)
Browse files Browse the repository at this point in the history
* chore: update tooling deps

* chore: update demo deps

* Revert "chore: update demo deps"

This reverts commit e918cbd.
  • Loading branch information
joshuaellis committed Dec 11, 2023
1 parent 54010d1 commit cfc74ea
Show file tree
Hide file tree
Showing 7 changed files with 1,480 additions and 623 deletions.
5 changes: 3 additions & 2 deletions docs/app/entry.client.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { hydrate } from 'react-dom'
import { hydrateRoot } from 'react-dom/client'

import { RemixBrowser } from '@remix-run/react'

hydrate(<RemixBrowser />, document)
hydrateRoot(document, <RemixBrowser />)
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
},
"devDependencies": {
"chokidar": "^3.5.3",
"concurrently": "^8.0.1",
"concurrently": "^8.2.2",
"ts-node": "^10.9.1"
},
"sideEffects": false
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@
}
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@react-three/fiber": "^8.11.9",
"@remix-run/dev": "patch:@remix-run/dev@npm%3A1.15.0#./.yarn/patches/@remix-run-dev-npm-1.15.0-33b55fa3ee.patch",
"@remix-run/serve": "^1.15.0",
"@simonsmith/cypress-image-snapshot": "^9.0.1",
"@swc/core": "^1.3.41",
"@swc/jest": "^0.2.24",
"@swc/core": "^1.3.100",
"@swc/jest": "^0.2.29",
"@testing-library/cypress": "^10.0.1",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
Expand All @@ -87,7 +87,7 @@
"@types/styled-components": "^5.1.26",
"@types/three": "^0.149.0",
"cypress": "^13.6.1",
"eslint": "^8.36.0",
"eslint": "^8.55.0",
"flush-microtasks": "^1.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
Expand All @@ -105,8 +105,8 @@
"start-server-and-test": "^2.0.3",
"three": "^0.150.1",
"tsup": "^6.7.0",
"turbo": "^1.8.3",
"typescript": "5.2.2",
"turbo": "^1.11.1",
"typescript": "5.3.3",
"vite": "^5.0.7",
"zdog": "^1.1.3"
},
Expand Down
1 change: 1 addition & 0 deletions packages/core/src/Animation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { SpringProps } from './types'
const emptyArray: readonly any[] = []

/** An animation being executed by the frameloop */
// eslint-disable-next-line @typescript-eslint/no-unsafe-declaration-merging
export class Animation<T = any> {
changed = false
values: readonly AnimatedValue[] = emptyArray
Expand Down
1 change: 1 addition & 0 deletions packages/eslint-config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,6 @@ module.exports = {
'react/prop-types': 'off',
'react/react-in-jsx-scope': 'off',
'react/display-name': 'off',
'react/no-unknown-property': 'off',
},
}
10 changes: 5 additions & 5 deletions packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"main": "index.js",
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "7.29.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "^4.6.0"
},
"peerDependencies": {
Expand Down

1 comment on commit cfc74ea

@vercel
Copy link

@vercel vercel bot commented on cfc74ea Dec 11, 2023

Choose a reason for hiding this comment

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

Please sign in to comment.