@getspot/spot-widget-react 3.1.2 → 3.1.4
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 +23 -0
- package/package.json +13 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
## @getspot/spot-widget-react [3.1.4](https://gitlab.com/getspot/spot-widget/compare/@getspot/spot-widget-react@3.1.3...@getspot/spot-widget-react@3.1.4) (2025-10-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* use range dependencies for wrappers ([5267a1c](https://gitlab.com/getspot/spot-widget/commit/5267a1cc8c27d2619e4840e10b6f120542301e0f))
|
|
7
|
+
* wrapper packages commit msg length was too long ([540a022](https://gitlab.com/getspot/spot-widget/commit/540a022873a4330686bb255ea08ddd194a8513c4))
|
|
8
|
+
|
|
9
|
+
## @getspot/spot-widget-react [3.1.3](https://gitlab.com/getspot/spot-widget/compare/@getspot/spot-widget-react@3.1.2...@getspot/spot-widget-react@3.1.3) (2025-10-29)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **ci:** update semantic-release tag formats and fix corrupted version ([ec89b9e](https://gitlab.com/getspot/spot-widget/commit/ec89b9ee4c97bea99b683fbbd5e4700d4a8b2c4f))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Dependencies
|
|
21
|
+
|
|
22
|
+
* **@getspot/spot-widget:** upgraded to 3.0.4
|
|
23
|
+
|
|
1
24
|
# @getspot/spot-widget-react
|
|
2
25
|
|
|
3
26
|
## 3.1.2
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getspot/spot-widget-react",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -12,8 +12,18 @@
|
|
|
12
12
|
"README.md",
|
|
13
13
|
"CHANGELOG.md"
|
|
14
14
|
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "vite build && npx -p typescript tsc --emitDeclarationOnly && cp dist/ReactSpotWidget.d.ts dist/index.d.ts",
|
|
17
|
+
"docs": "npx -p typedoc -p typedoc-plugin-markdown typedoc --plugin typedoc-plugin-markdown --out docs src/ReactSpotWidget.tsx",
|
|
18
|
+
"docs:readme": "npm run docs && node scripts/generate-readme.js",
|
|
19
|
+
"test": "jest --watchAll=false",
|
|
20
|
+
"test:watch": "jest --watch",
|
|
21
|
+
"test:coverage": "jest --coverage",
|
|
22
|
+
"test:ci": "jest --ci --coverage --watchAll=false",
|
|
23
|
+
"prepublishOnly": "npm run build"
|
|
24
|
+
},
|
|
15
25
|
"dependencies": {
|
|
16
|
-
"@getspot/spot-widget": "3.0.
|
|
26
|
+
"@getspot/spot-widget": "3.0.5"
|
|
17
27
|
},
|
|
18
28
|
"peerDependencies": {
|
|
19
29
|
"react": ">=18.0.0",
|
|
@@ -38,14 +48,5 @@
|
|
|
38
48
|
"react": "^18.0.0",
|
|
39
49
|
"react-dom": "^18.0.0",
|
|
40
50
|
"ts-jest": "^29.0.0"
|
|
41
|
-
},
|
|
42
|
-
"scripts": {
|
|
43
|
-
"build": "vite build && npx -p typescript tsc --emitDeclarationOnly && cp dist/ReactSpotWidget.d.ts dist/index.d.ts",
|
|
44
|
-
"docs": "npx -p typedoc -p typedoc-plugin-markdown typedoc --plugin typedoc-plugin-markdown --out docs src/ReactSpotWidget.tsx",
|
|
45
|
-
"docs:readme": "npm run docs && node scripts/generate-readme.js",
|
|
46
|
-
"test": "jest",
|
|
47
|
-
"test:watch": "jest --watch",
|
|
48
|
-
"test:coverage": "jest --coverage",
|
|
49
|
-
"test:ci": "jest --ci --coverage --watchAll=false"
|
|
50
51
|
}
|
|
51
|
-
}
|
|
52
|
+
}
|