@scayle/storefront-product-detail 1.5.1 → 1.5.2
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 +6 -0
- package/dist/module.json +2 -2
- package/dist/module.mjs +1 -1
- package/package.json +15 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @scayle/storefront-product-detail
|
|
2
2
|
|
|
3
|
+
## 1.5.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Use latest `nuxt@3.19.2` for build. Compatibility with previous version has not changed and is specified via package `peerDependencies` and Nuxt `compatibility` flag.
|
|
8
|
+
|
|
3
9
|
## 1.5.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/module.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scayle/storefront-product-detail",
|
|
3
3
|
"configKey": "product-detail",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.2",
|
|
5
5
|
"compatibility": {
|
|
6
6
|
"bridge": false,
|
|
7
7
|
"nuxt": ">=3.13"
|
|
8
8
|
},
|
|
9
9
|
"builder": {
|
|
10
10
|
"@nuxt/module-builder": "1.0.2",
|
|
11
|
-
"unbuild": "3.6.
|
|
11
|
+
"unbuild": "3.6.1"
|
|
12
12
|
}
|
|
13
13
|
}
|
package/dist/module.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineNuxtModule, createResolver, addImportsDir } from '@nuxt/kit';
|
|
2
2
|
|
|
3
3
|
const PACKAGE_NAME = "@scayle/storefront-product-detail";
|
|
4
|
-
const PACKAGE_VERSION = "1.5.
|
|
4
|
+
const PACKAGE_VERSION = "1.5.2";
|
|
5
5
|
const module = defineNuxtModule({
|
|
6
6
|
meta: {
|
|
7
7
|
name: PACKAGE_NAME,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scayle/storefront-product-detail",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"description": "Collection of essential composables and utilities to work with product detail",
|
|
5
5
|
"author": "SCAYLE Commerce Engine",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,28 +37,29 @@
|
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@arethetypeswrong/cli": "0.18.2",
|
|
40
|
-
"@nuxt/kit": "3.
|
|
40
|
+
"@nuxt/kit": "3.19.2",
|
|
41
41
|
"@nuxt/module-builder": "1.0.2",
|
|
42
|
-
"@nuxt/schema": "3.
|
|
42
|
+
"@nuxt/schema": "3.19.2",
|
|
43
43
|
"@nuxt/test-utils": "3.19.2",
|
|
44
|
-
"@types/node": "22.
|
|
44
|
+
"@types/node": "22.18.3",
|
|
45
45
|
"@vitest/coverage-v8": "3.2.4",
|
|
46
|
-
"@vueuse/core": "13.
|
|
47
|
-
"dprint": "0.50.
|
|
46
|
+
"@vueuse/core": "13.9.0",
|
|
47
|
+
"dprint": "0.50.2",
|
|
48
48
|
"eslint-formatter-gitlab": "6.0.1",
|
|
49
|
-
"eslint": "9.
|
|
49
|
+
"eslint": "9.35.0",
|
|
50
50
|
"happy-dom": "18.0.1",
|
|
51
|
-
"nuxt": "3.
|
|
51
|
+
"nuxt": "3.19.2",
|
|
52
52
|
"publint": "0.3.12",
|
|
53
53
|
"schema-dts": "1.1.5",
|
|
54
|
-
"typescript": "5.
|
|
55
|
-
"unbuild": "3.6.
|
|
54
|
+
"typescript": "5.9.2",
|
|
55
|
+
"unbuild": "3.6.1",
|
|
56
56
|
"vitest": "3.2.4",
|
|
57
57
|
"vue-router": "4.5.1",
|
|
58
|
-
"vue-tsc": "3.0.
|
|
59
|
-
"vue": "3.5.
|
|
60
|
-
"@scayle/eslint-config-storefront": "4.7.
|
|
61
|
-
"@scayle/storefront-nuxt": "8.
|
|
58
|
+
"vue-tsc": "3.0.7",
|
|
59
|
+
"vue": "3.5.21",
|
|
60
|
+
"@scayle/eslint-config-storefront": "4.7.8",
|
|
61
|
+
"@scayle/storefront-nuxt": "8.44.1",
|
|
62
|
+
"@scayle/vitest-config-storefront": "1.0.0"
|
|
62
63
|
},
|
|
63
64
|
"scripts": {
|
|
64
65
|
"build": "nuxt-module-build build",
|