@react-hive/honey-layout 16.2.0 → 16.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-hive/honey-layout",
3
- "version": "16.2.0",
3
+ "version": "16.3.0",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "react",
@@ -31,8 +31,7 @@
31
31
  "files": [
32
32
  "dist",
33
33
  "!dist/**/__mocks__",
34
- "!dist/**/__tests__",
35
- "!dist/**/jest*"
34
+ "!dist/**/__tests__"
36
35
  ],
37
36
  "peerDependencies": {
38
37
  "@react-hive/honey-style": "^5.0.0",
@@ -42,8 +41,8 @@
42
41
  "dependencies": {
43
42
  "@floating-ui/dom": "1.7.6",
44
43
  "@floating-ui/react": "0.27.19",
45
- "@react-hive/honey-hooks": "2.1.0",
46
- "@react-hive/honey-utils": "3.27.0",
44
+ "@react-hive/honey-hooks": "2.2.0",
45
+ "@react-hive/honey-utils": "3.28.0",
47
46
  "csstype": "3.2.3",
48
47
  "highlight.js": "11.11.1",
49
48
  "lodash.merge": "4.6.2",
@@ -56,7 +55,6 @@
56
55
  "@mdx-js/react": "3.1.1",
57
56
  "@testing-library/jest-dom": "6.9.1",
58
57
  "@testing-library/react": "16.3.2",
59
- "@types/jest": "29.5.14",
60
58
  "@types/lodash.merge": "4.6.9",
61
59
  "@types/lodash.throttle": "4.1.9",
62
60
  "@types/mdx": "2.0.13",
@@ -69,33 +67,19 @@
69
67
  "eslint-plugin-react": "7.37.5",
70
68
  "html-webpack-plugin": "5.6.6",
71
69
  "husky": "9.1.7",
72
- "jest": "29.7.0",
73
- "jest-environment-jsdom": "29.7.0",
70
+ "jsdom": "29.0.1",
74
71
  "prettier": "3.8.1",
75
72
  "style-loader": "4.0.0",
76
- "ts-jest": "29.4.6",
77
73
  "ts-loader": "9.5.4",
78
74
  "ts-node": "10.9.2",
79
75
  "tsx": "4.21.0",
80
- "typescript": "5.9.3",
76
+ "typescript": "6.0.2",
81
77
  "typescript-eslint": "8.57.2",
78
+ "vitest": "4.1.2",
82
79
  "webpack": "5.105.4",
83
80
  "webpack-cli": "7.0.2",
84
81
  "webpack-dev-server": "5.2.3"
85
82
  },
86
- "jest": {
87
- "preset": "ts-jest",
88
- "testEnvironment": "jsdom",
89
- "setupFilesAfterEnv": [
90
- "<rootDir>/jest-setup.ts"
91
- ],
92
- "testMatch": [
93
- "**/src/**/__tests__/**/*.spec.ts?(x)"
94
- ],
95
- "moduleNameMapper": {
96
- "^~/(.*)$": "<rootDir>/src/$1"
97
- }
98
- },
99
83
  "browserslist": [
100
84
  "defaults",
101
85
  "not IE 11"
@@ -103,7 +87,7 @@
103
87
  "scripts": {
104
88
  "clean": "rm -rf dist coverage",
105
89
  "start": "NODE_ENV=development webpack serve --config webpack-docs.config.mjs",
106
- "test": "jest --coverage",
90
+ "test": "vitest",
107
91
  "build:lib": "webpack --config webpack.config.mjs",
108
92
  "build:docs": "webpack --config webpack-docs.config.mjs",
109
93
  "diagnostics": "tsx scripts/collect-diagnostics.ts"