@scayle/storefront-nuxt 8.3.1 → 8.3.3
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 +18 -1
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/package.json +10 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @scayle/storefront-nuxt
|
|
2
2
|
|
|
3
|
+
## 8.3.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependency `@vueuse/core@12.3.0` to `@vueuse/core@12.4.0`
|
|
8
|
+
|
|
9
|
+
## 8.3.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Removed dependency `@nuxt/kit@^3.12.2`
|
|
14
|
+
- Fixed misspelling of interface `BaskteItemDisplayDataItem` to `BasketItemDisplayDataItem`
|
|
15
|
+
|
|
16
|
+
**Dependencies**
|
|
17
|
+
|
|
18
|
+
- Updated dependency to @scayle/storefront-core@8.1.4
|
|
19
|
+
|
|
3
20
|
## 8.3.1
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -1236,7 +1253,7 @@ For more details on `useAsyncData` usage check out the [Nuxt Docs](https://nuxt.
|
|
|
1236
1253
|
|
|
1237
1254
|
### Patch Changes
|
|
1238
1255
|
|
|
1239
|
-
- Fix basket count calculation for
|
|
1256
|
+
- Fix basket count calculation for baskets including item groups
|
|
1240
1257
|
|
|
1241
1258
|
## 7.77.1
|
|
1242
1259
|
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scayle/storefront-nuxt",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "8.3.
|
|
4
|
+
"version": "8.3.3",
|
|
5
5
|
"description": "Nuxt integration for the SCAYLE Commerce Engine and Storefront API",
|
|
6
6
|
"author": "SCAYLE Commerce Engine",
|
|
7
7
|
"license": "MIT",
|
|
@@ -66,16 +66,15 @@
|
|
|
66
66
|
"typecheck": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
|
|
67
67
|
"package:lint": "publint",
|
|
68
68
|
"test": "vitest run",
|
|
69
|
-
"test:ci": "vitest --run --passWithNoTests --coverage --reporter=default --reporter=junit --outputFile=./junit.xml",
|
|
69
|
+
"test:ci": "vitest --run --passWithNoTests --coverage --reporter=default --reporter=junit --outputFile=./coverage/junit.xml",
|
|
70
70
|
"test:watch": "vitest watch"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@nuxt/kit": "^3.12.2",
|
|
74
73
|
"@opentelemetry/api": "^1.9.0",
|
|
75
74
|
"@scayle/h3-session": "0.5.1",
|
|
76
|
-
"@scayle/storefront-core": "8.1.
|
|
75
|
+
"@scayle/storefront-core": "8.1.4",
|
|
77
76
|
"@scayle/unstorage-compression-driver": "^0.2.3",
|
|
78
|
-
"@vueuse/core": "12.
|
|
77
|
+
"@vueuse/core": "12.4.0",
|
|
79
78
|
"consola": "^3.2.3",
|
|
80
79
|
"core-js": "^3.37.1",
|
|
81
80
|
"defu": "^6.1.4",
|
|
@@ -91,11 +90,12 @@
|
|
|
91
90
|
"schema-dts": "1.1.2"
|
|
92
91
|
},
|
|
93
92
|
"devDependencies": {
|
|
94
|
-
"@nuxt/eslint": "0.7.
|
|
93
|
+
"@nuxt/eslint": "0.7.5",
|
|
94
|
+
"@nuxt/kit": "3.14.1592",
|
|
95
95
|
"@nuxt/module-builder": "0.8.4",
|
|
96
96
|
"@nuxt/schema": "3.14.1592",
|
|
97
97
|
"@nuxt/test-utils": "3.15.1",
|
|
98
|
-
"@scayle/eslint-config-storefront": "4.4.
|
|
98
|
+
"@scayle/eslint-config-storefront": "4.4.1",
|
|
99
99
|
"@scayle/eslint-plugin-vue-composable": "0.2.1",
|
|
100
100
|
"@types/node": "22.10.5",
|
|
101
101
|
"dprint": "0.48.0",
|
|
@@ -105,13 +105,15 @@
|
|
|
105
105
|
"h3": "1.13.0",
|
|
106
106
|
"nitropack": "2.9.7",
|
|
107
107
|
"node-mocks-http": "1.16.2",
|
|
108
|
-
"nuxi": "3.
|
|
108
|
+
"nuxi": "3.19.1",
|
|
109
109
|
"nuxt": "3.14.1592",
|
|
110
110
|
"publint": "0.2.12",
|
|
111
|
+
"typescript": "5.7.3",
|
|
111
112
|
"vue-tsc": "2.2.0",
|
|
112
113
|
"vitest": "2.1.8"
|
|
113
114
|
},
|
|
114
115
|
"peerDependencies": {
|
|
116
|
+
"@nuxt/kit": "^3.12.2",
|
|
115
117
|
"fishery": "^2.2.2",
|
|
116
118
|
"h3": "^1.10.0",
|
|
117
119
|
"nitropack": "^2.9.7",
|