@coveo/headless-react 2.0.8 → 2.0.9-pre.3b77b65faa

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +7 -9
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/v2/packages/samples/headless-ssr/) for examples.
8
+ - Refer to [samples/headless-ssr](https://github.com/coveo/ui-kit/tree/master/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.8",
3
+ "version": "2.0.9-pre.3b77b65faa",
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": "jest",
29
- "test:watch": "jest --watch --colors --no-cache",
28
+ "test": "vitest run",
29
+ "test:watch": "vitest",
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 v2-latest"
33
+ "promote:npm:latest": "npm run-script -w=@coveo/release promote-npm-prod"
34
34
  },
35
35
  "dependencies": {
36
- "@coveo/headless": "3.4.1"
36
+ "@coveo/headless": "3.5.1-pre.3b77b65faa"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@coveo/release": "1.0.0",
@@ -46,19 +46,17 @@
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",
50
49
  "jest-environment-jsdom": "29.7.0",
51
50
  "publint": "0.2.9",
52
51
  "rimraf": "5.0.9",
53
- "ts-jest": "29.2.3",
54
52
  "typescript": "5.4.5",
55
- "undici": "5.28.4"
53
+ "vitest": "2.1.1"
56
54
  },
57
55
  "peerDependencies": {
58
56
  "react": "^18",
59
57
  "react-dom": "^18"
60
58
  },
61
59
  "engines": {
62
- "node": "^18 || ^20"
60
+ "node": "^20.9.0"
63
61
  }
64
62
  }