@coveo/headless-react 2.0.7 → 2.0.8
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -1
- package/package.json +9 -7
package/README.md
CHANGED
@@ -5,5 +5,5 @@
|
|
5
5
|
## Learn more
|
6
6
|
|
7
7
|
- Checkout our [Documentation](https://docs.coveo.com/en/headless/latest/usage/headless-server-side-rendering/)
|
8
|
-
- Refer to [samples/headless-ssr](https://github.com/coveo/ui-kit/tree/
|
8
|
+
- Refer to [samples/headless-ssr](https://github.com/coveo/ui-kit/tree/v2/packages/samples/headless-ssr/) for examples.
|
9
9
|
- All exports from `@coveo/headless/ssr` are also available from under `@coveo/headless-react/ssr` as convenience.
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@coveo/headless-react",
|
3
|
-
"version": "2.0.
|
3
|
+
"version": "2.0.8",
|
4
4
|
"description": "React utilities for SSR (Server Side Rendering) with headless",
|
5
5
|
"homepage": "https://docs.coveo.com/en/headless/latest/",
|
6
6
|
"repository": {
|
@@ -25,15 +25,15 @@
|
|
25
25
|
"scripts": {
|
26
26
|
"build": "nx build",
|
27
27
|
"clean": "rimraf dist",
|
28
|
-
"test": "
|
29
|
-
"test:watch": "
|
28
|
+
"test": "jest",
|
29
|
+
"test:watch": "jest --watch --colors --no-cache",
|
30
30
|
"lint": "eslint .; publint",
|
31
31
|
"publish:npm": "npm run-script -w=@coveo/release npm-publish",
|
32
32
|
"publish:bump": "npm run-script -w=@coveo/release bump",
|
33
|
-
"promote:npm:latest": "node ../../scripts/deploy/update-npm-tag.mjs latest"
|
33
|
+
"promote:npm:latest": "node ../../scripts/deploy/update-npm-tag.mjs v2-latest"
|
34
34
|
},
|
35
35
|
"dependencies": {
|
36
|
-
"@coveo/headless": "3.4.
|
36
|
+
"@coveo/headless": "3.4.1"
|
37
37
|
},
|
38
38
|
"devDependencies": {
|
39
39
|
"@coveo/release": "1.0.0",
|
@@ -46,17 +46,19 @@
|
|
46
46
|
"eslint-plugin-react": "7.35.0",
|
47
47
|
"eslint-plugin-testing-library": "6.2.2",
|
48
48
|
"gts": "5.3.1",
|
49
|
+
"jest": "29.7.0",
|
49
50
|
"jest-environment-jsdom": "29.7.0",
|
50
51
|
"publint": "0.2.9",
|
51
52
|
"rimraf": "5.0.9",
|
53
|
+
"ts-jest": "29.2.3",
|
52
54
|
"typescript": "5.4.5",
|
53
|
-
"
|
55
|
+
"undici": "5.28.4"
|
54
56
|
},
|
55
57
|
"peerDependencies": {
|
56
58
|
"react": "^18",
|
57
59
|
"react-dom": "^18"
|
58
60
|
},
|
59
61
|
"engines": {
|
60
|
-
"node": "^20
|
62
|
+
"node": "^18 || ^20"
|
61
63
|
}
|
62
64
|
}
|