Skip to content

Commit

Permalink
chore(deps): update dependencies and ensure all packages list all the…
Browse files Browse the repository at this point in the history
…ir dependencies (#181)
  • Loading branch information
LouisBrunner committed Sep 6, 2023
1 parent 95fb04f commit ce82a05
Show file tree
Hide file tree
Showing 8 changed files with 2,231 additions and 2,845 deletions.
1 change: 1 addition & 0 deletions .gitattributes
@@ -0,0 +1 @@
package-lock.json -diff
1 change: 1 addition & 0 deletions .jest-setup.ts
@@ -0,0 +1 @@
import '@testing-library/jest-dom'
2 changes: 1 addition & 1 deletion jest.config.js
Expand Up @@ -17,7 +17,7 @@ export default {
testEnvironment: 'jsdom',

setupFilesAfterEnv: [
'@testing-library/jest-dom',
'<rootDir>/.jest-setup.ts',
],

transform: {
Expand Down
5,015 changes: 2,196 additions & 2,819 deletions package-lock.json

Large diffs are not rendered by default.

43 changes: 22 additions & 21 deletions package.json
Expand Up @@ -6,9 +6,9 @@
"browserslist": [
"defaults"
],
"engines" : {
"npm" : ">=7.0.0",
"node" : ">=15.0.0"
"engines": {
"npm": ">=7.0.0",
"node": ">=15.0.0"
},
"funding": {
"type": "individual",
Expand All @@ -31,25 +31,26 @@
"prepare": "npm run clean && npm run build && npm run lint && npm run test"
},
"devDependencies": {
"@babel/preset-typescript": "^7.21.5",
"@testing-library/jest-dom": "^5.16.5",
"@babel/preset-typescript": "^7.22.15",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/jsdom": "^21.1.1",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"esbuild": "^0.18",
"@types/jest": "^29.5.4",
"@types/jsdom": "^21.1.2",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"esbuild": "^0.19",
"esbuild-jest": "^0.5.0",
"esbuild-node-externals": "^1.7.0",
"eslint": "^8.42.0",
"eslint-plugin-compat": "^4.1.4",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-dom": "^5.0.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-testing-library": "^6.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-runner-eslint": "^2.1.0",
"esbuild-node-externals": "^1.9.0",
"eslint": "^8.48.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-testing-library": "^6.0.1",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"jest-runner-eslint": "^2.1.1",
"lerna": "^6.6.2",
"node-notifier": "^10.0.1",
"react": "^18.2.0",
Expand All @@ -59,7 +60,7 @@
"react-dnd-test-utils": "^16.0.1",
"react-dnd-touch-backend": "^16.0.1",
"react-dom": "^18.2.0",
"typescript": "^5.1.3"
"typescript": "^5.2.2"
},
"workspaces": [
"./packages/*"
Expand Down
5 changes: 4 additions & 1 deletion packages/dnd-multi-backend/package.json
Expand Up @@ -23,5 +23,8 @@
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"gitHead": "d3329f143a5b4544ca30416e0b04a397e738f046"
"gitHead": "d3329f143a5b4544ca30416e0b04a397e738f046",
"peerDependencies": {
"dnd-core": "^16.0.1"
}
}
2 changes: 2 additions & 0 deletions packages/react-dnd-multi-backend/package.json
Expand Up @@ -30,6 +30,8 @@
},
"peerDependencies": {
"react": "^16.14.0 || ^17.0.2 || ^18.0.0",
"dnd-core": "^16.0.1",
"react-dnd": "^16.0.1",
"react-dom": "^16.14.0 || ^17.0.2 || ^18.0.0"
},
"gitHead": "d3329f143a5b4544ca30416e0b04a397e738f046"
Expand Down
7 changes: 4 additions & 3 deletions tsconfig.json
Expand Up @@ -28,16 +28,17 @@
"dnd-multi-backend": [
"packages/dnd-multi-backend/src"
],
"react-dnd-preview": [
"packages/react-dnd-preview/src"
],
"rdndmb-html5-to-touch": [
"packages/rdndmb-html5-to-touch/src"
],
"react-dnd-preview": [
"packages/react-dnd-preview/src"
]
},
"skipLibCheck": true
},
"include": [
".jest-setup.ts",
"__mocks__/**/*.ts",
"packages/*/examples/**/*.ts*",
"packages/*/src/**/*.ts*"
Expand Down

0 comments on commit ce82a05

Please sign in to comment.