@scayle/storefront-nuxt 8.38.1 → 8.38.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 +25 -0
- package/dist/module.json +2 -2
- package/dist/module.mjs +2 -2
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @scayle/storefront-nuxt
|
|
2
2
|
|
|
3
|
+
## 8.38.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
**Dependencies**
|
|
8
|
+
|
|
9
|
+
**@scayle/storefront-core v8.38.3**
|
|
10
|
+
|
|
11
|
+
- Patch
|
|
12
|
+
- Refactored internals of `getOrderDataByCbd`. This change has no noticable impact.
|
|
13
|
+
|
|
14
|
+
## 8.38.2
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Fixed a compatibility issue with the Nuxt 4 directory structure where the `rpcDir` was not resolved correctly.
|
|
19
|
+
|
|
20
|
+
**Dependencies**
|
|
21
|
+
|
|
22
|
+
- Updated dependency to @scayle/unstorage-compression-driver@1.0.1
|
|
23
|
+
|
|
24
|
+
**@scayle/storefront-core v8.38.2**
|
|
25
|
+
|
|
26
|
+
- No changes in this release.
|
|
27
|
+
|
|
3
28
|
## 8.38.1
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
package/dist/module.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scayle/storefront-nuxt",
|
|
3
|
-
"version": "8.38.
|
|
3
|
+
"version": "8.38.3",
|
|
4
4
|
"configKey": "storefront",
|
|
5
5
|
"compatibility": {
|
|
6
6
|
"nuxt": "^3.9.0"
|
|
7
7
|
},
|
|
8
8
|
"builder": {
|
|
9
|
-
"@nuxt/module-builder": "1.0.
|
|
9
|
+
"@nuxt/module-builder": "1.0.2",
|
|
10
10
|
"unbuild": "3.5.0"
|
|
11
11
|
}
|
|
12
12
|
}
|
package/dist/module.mjs
CHANGED
|
@@ -54,7 +54,7 @@ export default {
|
|
|
54
54
|
}`;
|
|
55
55
|
}
|
|
56
56
|
const PACKAGE_NAME = "@scayle/storefront-nuxt";
|
|
57
|
-
const PACKAGE_VERSION = "8.38.
|
|
57
|
+
const PACKAGE_VERSION = "8.38.3";
|
|
58
58
|
const logger = createConsola({
|
|
59
59
|
fancy: true,
|
|
60
60
|
formatOptions: {
|
|
@@ -267,7 +267,7 @@ const module = defineNuxtModule({
|
|
|
267
267
|
},
|
|
268
268
|
async setup(options, nuxt) {
|
|
269
269
|
const { resolve } = createResolver(import.meta.url);
|
|
270
|
-
const { resolve: appResolve } = createResolver(nuxt.options.
|
|
270
|
+
const { resolve: appResolve } = createResolver(nuxt.options.rootDir);
|
|
271
271
|
nuxt.options.runtimeConfig.storefront = defu(
|
|
272
272
|
nuxt.options.runtimeConfig.storefront,
|
|
273
273
|
options
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scayle/storefront-nuxt",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "8.38.
|
|
4
|
+
"version": "8.38.3",
|
|
5
5
|
"description": "Nuxt integration for the SCAYLE Commerce Engine and Storefront API",
|
|
6
6
|
"author": "SCAYLE Commerce Engine",
|
|
7
7
|
"license": "MIT",
|
|
@@ -90,23 +90,23 @@
|
|
|
90
90
|
"utility-types": "^3.11.0",
|
|
91
91
|
"vue-router": "^4.4.0",
|
|
92
92
|
"zod": "^4.0.0",
|
|
93
|
-
"@scayle/storefront-core": "8.38.
|
|
93
|
+
"@scayle/storefront-core": "8.38.3",
|
|
94
94
|
"@scayle/unstorage-compression-driver": "1.0.1"
|
|
95
95
|
},
|
|
96
96
|
"devDependencies": {
|
|
97
97
|
"@arethetypeswrong/cli": "0.18.2",
|
|
98
98
|
"@eslint/eslintrc": "3.3.1",
|
|
99
99
|
"@nuxt/eslint": "1.7.1",
|
|
100
|
-
"@nuxt/eslint-config": "1.
|
|
100
|
+
"@nuxt/eslint-config": "1.7.1",
|
|
101
101
|
"@nuxt/kit": "3.17.7",
|
|
102
|
-
"@nuxt/module-builder": "1.0.
|
|
102
|
+
"@nuxt/module-builder": "1.0.2",
|
|
103
103
|
"@nuxt/schema": "3.17.7",
|
|
104
104
|
"@nuxt/test-utils": "3.19.2",
|
|
105
105
|
"@types/node": "22.16.5",
|
|
106
106
|
"@vitest/coverage-v8": "3.2.4",
|
|
107
107
|
"dprint": "0.50.1",
|
|
108
108
|
"eslint-formatter-gitlab": "6.0.1",
|
|
109
|
-
"eslint": "9.
|
|
109
|
+
"eslint": "9.32.0",
|
|
110
110
|
"fishery": "2.3.1",
|
|
111
111
|
"h3": "1.15.3",
|
|
112
112
|
"nitro-test-utils": "0.9.2",
|
|
@@ -117,8 +117,8 @@
|
|
|
117
117
|
"typescript": "5.8.3",
|
|
118
118
|
"unbuild": "3.5.0",
|
|
119
119
|
"vitest": "3.2.4",
|
|
120
|
-
"vue-tsc": "3.0.
|
|
121
|
-
"@scayle/eslint-config-storefront": "4.7.
|
|
120
|
+
"vue-tsc": "3.0.4",
|
|
121
|
+
"@scayle/eslint-config-storefront": "4.7.2",
|
|
122
122
|
"@scayle/eslint-plugin-vue-composable": "0.2.1",
|
|
123
123
|
"@scayle/unstorage-scayle-kv-driver": "1.0.3"
|
|
124
124
|
},
|