@getspot/spot-widget-react 3.1.5 → 3.1.7
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 +12 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## @getspot/spot-widget-react [3.1.7](https://gitlab.com/getspot/spot-widget/compare/@getspot/spot-widget-react@3.1.6...@getspot/spot-widget-react@3.1.7) (2025-11-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **core:** add eventid support ([0414be5](https://gitlab.com/getspot/spot-widget/commit/0414be5f7f30a968fe9c3fd94f14d37d5ef8849f))
|
|
7
|
+
* **release:** add no-git-checks flag to release command ([2655b37](https://gitlab.com/getspot/spot-widget/commit/2655b372649a09642e20d2803c53d696fd434ea4))
|
|
8
|
+
|
|
9
|
+
## @getspot/spot-widget-react [3.1.6](https://gitlab.com/getspot/spot-widget/compare/@getspot/spot-widget-react@3.1.5...@getspot/spot-widget-react@3.1.6) (2025-11-14)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **release:** restore workspace deps and simplify release automation ([cd85a3b](https://gitlab.com/getspot/spot-widget/commit/cd85a3b97f026dfa0b93642aa2432a5abdf7fbbf))
|
|
15
|
+
|
|
1
16
|
## @getspot/spot-widget-react [3.1.5](https://gitlab.com/getspot/spot-widget/compare/@getspot/spot-widget-react@3.1.4...@getspot/spot-widget-react@3.1.5) (2025-11-05)
|
|
2
17
|
|
|
3
18
|
|
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.7",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -12,18 +12,8 @@
|
|
|
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
|
-
},
|
|
25
15
|
"dependencies": {
|
|
26
|
-
"@getspot/spot-widget": "3.
|
|
16
|
+
"@getspot/spot-widget": "3.1.1"
|
|
27
17
|
},
|
|
28
18
|
"peerDependencies": {
|
|
29
19
|
"react": ">=18.0.0",
|
|
@@ -48,5 +38,14 @@
|
|
|
48
38
|
"react": "^18.0.0",
|
|
49
39
|
"react-dom": "^18.0.0",
|
|
50
40
|
"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 --watchAll=false",
|
|
47
|
+
"test:watch": "jest --watch",
|
|
48
|
+
"test:coverage": "jest --coverage",
|
|
49
|
+
"test:ci": "jest --ci --coverage --watchAll=false"
|
|
51
50
|
}
|
|
52
|
-
}
|
|
51
|
+
}
|