@pexip-engage-public/plugin-react 2.0.51 → 2.0.52-canary-20240726141416

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +4 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @pexip-engage-public/plugin-react
2
2
 
3
+ ## 2.0.52-canary-20240726141416
4
+
5
+ ### Patch Changes
6
+
7
+ - f9d4e5b: feat: DX - remove project references setup for `turbo watch`
8
+ feat: Don't hide `error` toast by default after `3000ms`
9
+ - Updated dependencies [b0b8643]
10
+ - Updated dependencies [f9d4e5b]
11
+ - @pexip-engage-public/plugin@1.0.51-canary-20240726141416
12
+
3
13
  ## 2.0.51
4
14
 
5
15
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pexip-engage-public/plugin-react",
3
- "version": "2.0.51",
3
+ "version": "2.0.52-canary-20240726141416",
4
4
  "description": "React wrapper component for the Pexip Engage Plugin",
5
5
  "homepage": "https://github.com/skedify/frontend-mono/tree/develop/apps/booking-plugin/packages/plugin-react#readme",
6
6
  "bugs": {
@@ -20,10 +20,7 @@
20
20
  "sideEffects": false,
21
21
  "type": "module",
22
22
  "exports": {
23
- ".": "./dist/index.js",
24
- "./src/index.tsx": {
25
- "import": "./src/index.tsx"
26
- }
23
+ ".": "./dist/index.js"
27
24
  },
28
25
  "files": [
29
26
  "dist",
@@ -32,11 +29,11 @@
32
29
  ],
33
30
  "dependencies": {
34
31
  "deepmerge": "^4.3.1",
35
- "@pexip-engage-public/plugin": "1.0.50"
32
+ "@pexip-engage-public/plugin": "1.0.51-canary-20240726141416"
36
33
  },
37
34
  "devDependencies": {
38
35
  "@pexip-engage/tsconfig": "0.1.1",
39
- "eslint-config-pexip-engage": "0.1.23"
36
+ "eslint-config-pexip-engage": "0.1.24-canary-20240726141416"
40
37
  },
41
38
  "peerDependencies": {
42
39
  "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
@@ -51,7 +48,6 @@
51
48
  "scripts": {
52
49
  "build": "tsc",
53
50
  "clean": "rm -rf .turbo node_modules dist tsconfig.tsbuildinfo",
54
- "dev": "tsc --watch",
55
51
  "lint": "TIMING=1 eslint --max-warnings=0 .",
56
52
  "lint:fix": "pnpm lint --fix"
57
53
  }