@getspot/spot-widget-vue2 3.0.3 → 3.0.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 +15 -0
- package/package.json +12 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## @getspot/spot-widget-vue2 [3.0.4](https://gitlab.com/getspot/spot-widget/compare/@getspot/spot-widget-vue2@3.0.3...@getspot/spot-widget-vue2@3.0.4) (2025-10-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **ci:** update semantic-release tag formats and fix corrupted version ([ec89b9e](https://gitlab.com/getspot/spot-widget/commit/ec89b9ee4c97bea99b683fbbd5e4700d4a8b2c4f))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Dependencies
|
|
13
|
+
|
|
14
|
+
* **@getspot/spot-widget:** upgraded to 3.0.4
|
|
15
|
+
|
|
1
16
|
# @getspot/spot-widget-vue2
|
|
2
17
|
|
|
3
18
|
## 3.0.3
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getspot/spot-widget-vue2",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -12,8 +12,17 @@
|
|
|
12
12
|
"README.md",
|
|
13
13
|
"CHANGELOG.md"
|
|
14
14
|
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "vite build && cp src/index.d.ts dist/index.d.ts",
|
|
17
|
+
"docs:readme": "node scripts/generate-readme.js",
|
|
18
|
+
"test": "vitest run",
|
|
19
|
+
"test:watch": "vitest --watch",
|
|
20
|
+
"test:coverage": "vitest --coverage",
|
|
21
|
+
"test:ci": "vitest run --coverage",
|
|
22
|
+
"prepublishOnly": "npm run build"
|
|
23
|
+
},
|
|
15
24
|
"dependencies": {
|
|
16
|
-
"@getspot/spot-widget": "3.0.
|
|
25
|
+
"@getspot/spot-widget": "3.0.4"
|
|
17
26
|
},
|
|
18
27
|
"peerDependencies": {
|
|
19
28
|
"vue": "^2.6.0"
|
|
@@ -27,13 +36,5 @@
|
|
|
27
36
|
"@vue/test-utils": "^1.3.6",
|
|
28
37
|
"vue": "^2.7.14",
|
|
29
38
|
"vue-template-compiler": "^2.7.14"
|
|
30
|
-
},
|
|
31
|
-
"scripts": {
|
|
32
|
-
"build": "vite build && cp src/index.d.ts dist/index.d.ts",
|
|
33
|
-
"docs:readme": "node scripts/generate-readme.js",
|
|
34
|
-
"test": "vitest",
|
|
35
|
-
"test:watch": "vitest --watch",
|
|
36
|
-
"test:coverage": "vitest --coverage",
|
|
37
|
-
"test:ci": "vitest run --coverage"
|
|
38
39
|
}
|
|
39
|
-
}
|
|
40
|
+
}
|