Skip to content

Commit

Permalink
chore(deps): update dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dai-shi committed Jul 20, 2023
1 parent c0bda5a commit 70a6ed3
Show file tree
Hide file tree
Showing 7 changed files with 705 additions and 376 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"import/extensions": ["error", "always"],
"import/no-unresolved": ["error", { "commonjs": true, "amd": true }],
"import/export": "error",
"@typescript-eslint/no-duplicate-imports": ["error"],
"import/no-duplicates": ["error"],
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-multiple-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
- 18.0.0
- 18.1.0
- 18.2.0
- 18.3.0-canary-fdc8c81e0-20230707
- 0.0.0-experimental-fdc8c81e0-20230707
- 18.3.0-canary-d445cee60-20230718
- 0.0.0-experimental-d445cee60-20230718
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,11 @@
"use-sync-external-store": "1.2.0"
},
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/core": "^7.22.9",
"@babel/helper-module-imports": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@babel/plugin-transform-typescript": "^7.22.5",
"@babel/preset-env": "^7.22.7",
"@babel/plugin-transform-typescript": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/types": "^7.22.5",
"@redux-devtools/extension": "^3.2.5",
"@rollup/plugin-alias": "^5.0.0",
Expand All @@ -118,42 +118,42 @@
"@testing-library/react": "^14.0.0",
"@types/babel-plugin-macros": "^3.1.0",
"@types/jsdom": "^21.1.1",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/use-sync-external-store": "^0.0.3",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/ui": "^0.33.0",
"aslemammad-vite-plugin-macro": "^1.0.0",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-tester": "10.1.0",
"concurrently": "^8.2.0",
"downlevel-dts": "^0.11.0",
"esbuild": "^0.18.11",
"eslint": "^8.44.0",
"esbuild": "^0.18.14",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-vitest": "^0.2.6",
"jsdom": "^22.1.0",
"json": "^11.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.8.8",
"prettier": "^3.0.0",
"proxy-memoize": "^2.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"redux": "^4.2.1",
"rollup": "^3.26.2",
"rollup": "^3.26.3",
"rollup-plugin-esbuild": "^5.0.0",
"shx": "^0.3.4",
"ts-expect": "^1.3.0",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"vite": "^4.4.2",
"vite": "^4.4.4",
"vitest": "^0.33.0"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/vanilla.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ type ProxyState = readonly [
target: object,
ensureVersion: (nextCheckVersion?: number) => number,
createSnapshot: CreateSnapshot,
addListener: AddListener
addListener: AddListener,
]

// shared state
Expand Down
2 changes: 1 addition & 1 deletion src/vanilla/utils/derive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type SourceObjectEntry = [
subscriptions: Set<Subscription>,
unsubscribe: () => void,
pendingCount: number,
pendingCallbacks: Set<() => void>
pendingCallbacks: Set<() => void>,
]

type DerivedObjectEntry = [subscriptions: Set<Subscription>]
Expand Down
2 changes: 1 addition & 1 deletion src/vanilla/utils/proxyWithComputed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type { INTERNAL_Snapshot as Snapshot } from '../../vanilla.ts'
*/
export function proxyWithComputed_DEPRECATED<
T extends object,
U extends object
U extends object,
>(
initialObject: T,
computedFns: {
Expand Down
Loading

0 comments on commit 70a6ed3

Please sign in to comment.