@pplancq/react-template 2.3.0 → 2.3.1
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/CHANGELOG.md +15 -0
- package/package.json +9 -9
- package/public/mockServiceWorker.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## @pplancq/react-template [2.3.1](https://github.com/pplancq/dev-tools/compare/@pplancq/react-template@2.3.0...@pplancq/react-template@2.3.1) (2024-12-16)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **deps:** update dependency react-hook-form to ^7.54.1 ([1f36068](https://github.com/pplancq/dev-tools/commit/1f36068ea0d07e1706164c00d99751c8bbd459a5))
|
|
6
|
+
* **deps:** update react-query mono repo to ^5.62.7 ([756da97](https://github.com/pplancq/dev-tools/commit/756da97692fad5408f8dc0acddb0c5a1503b4c9c))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Dependencies
|
|
10
|
+
|
|
11
|
+
* **@pplancq/eslint-config:** upgraded to 4.0.5
|
|
12
|
+
* **@pplancq/postcss-config:** upgraded to 2.1.6
|
|
13
|
+
* **@pplancq/prettier-config:** upgraded to 1.2.1
|
|
14
|
+
* **@pplancq/webpack-config:** upgraded to 1.8.2
|
|
15
|
+
|
|
1
16
|
## @pplancq/react-template [2.3.0](https://github.com/pplancq/dev-tools/compare/@pplancq/react-template@2.2.0...@pplancq/react-template@2.3.0) (2024-12-09)
|
|
2
17
|
|
|
3
18
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pplancq/react-template",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "react template",
|
|
6
6
|
"author": "pplancq <paul.plancq@outlook.fr>",
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@hookform/resolvers": "^3.9.1",
|
|
41
|
-
"@tanstack/react-query": "^5.62.
|
|
42
|
-
"@tanstack/react-query-devtools": "^5.62.
|
|
41
|
+
"@tanstack/react-query": "^5.62.7",
|
|
42
|
+
"@tanstack/react-query-devtools": "^5.62.7",
|
|
43
43
|
"react": "^19.0.0",
|
|
44
44
|
"react-dom": "^19.0.0",
|
|
45
|
-
"react-hook-form": "^7.
|
|
45
|
+
"react-hook-form": "^7.54.1",
|
|
46
46
|
"react-router": "^7.0.2",
|
|
47
47
|
"yup": "^1.5.0"
|
|
48
48
|
},
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"@testing-library/react": "^16.1.0",
|
|
59
59
|
"@testing-library/user-event": "^14.5.2",
|
|
60
60
|
"@types/react": "^19.0.1",
|
|
61
|
-
"@types/react-dom": "^19.0.
|
|
61
|
+
"@types/react-dom": "^19.0.2",
|
|
62
62
|
"@vitejs/plugin-react-swc": "^3.7.2",
|
|
63
63
|
"@vitest/coverage-v8": "^2.1.8",
|
|
64
64
|
"concurrently": "^9.1.0",
|
|
@@ -66,21 +66,21 @@
|
|
|
66
66
|
"eslint-plugin-prettier": "^5.2.1",
|
|
67
67
|
"husky": "^9.1.7",
|
|
68
68
|
"jsdom": "^25.0.1",
|
|
69
|
-
"lint-staged": "^15.2.
|
|
70
|
-
"msw": "^2.6.
|
|
69
|
+
"lint-staged": "^15.2.11",
|
|
70
|
+
"msw": "^2.6.8",
|
|
71
71
|
"prettier": "^3.4.2",
|
|
72
72
|
"stylelint": "^16.11.0",
|
|
73
73
|
"stylelint-prettier": "^5.0.2",
|
|
74
74
|
"tsc-files": "^1.1.4",
|
|
75
75
|
"typescript": "^5.7.2",
|
|
76
76
|
"vite-plugin-svgr": "^4.3.0",
|
|
77
|
-
"vite-tsconfig-paths": "^5.1.
|
|
77
|
+
"vite-tsconfig-paths": "^5.1.4",
|
|
78
78
|
"vitest": "^2.1.8",
|
|
79
79
|
"vitest-axe": "^1.0.0-pre.3",
|
|
80
80
|
"vitest-sonar-reporter": "^2.0.0",
|
|
81
81
|
"webpack": "^5.97.1",
|
|
82
82
|
"webpack-cli": "^5.1.4",
|
|
83
|
-
"webpack-dev-server": "^5.
|
|
83
|
+
"webpack-dev-server": "^5.2.0"
|
|
84
84
|
},
|
|
85
85
|
"engines": {
|
|
86
86
|
"node": ">=20.12.2"
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* - Please do NOT serve this file on production.
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
|
-
const PACKAGE_VERSION = '2.6.
|
|
11
|
+
const PACKAGE_VERSION = '2.6.9'
|
|
12
12
|
const INTEGRITY_CHECKSUM = '00729d72e3b82faf54ca8b9621dbb96f'
|
|
13
13
|
const IS_MOCKED_RESPONSE = Symbol('isMockedResponse')
|
|
14
14
|
const activeClientIds = new Set()
|