@scayle/omnichannel-nuxt 3.0.0 → 3.0.1
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 +1 -1
- package/dist/module.mjs +4 -0
- package/dist/runtime/composables/index.d.ts +4 -0
- package/dist/runtime/composables/index.mjs +4 -0
- package/package.json +17 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @scayle/omnichannel-nuxt
|
|
2
2
|
|
|
3
|
+
## 3.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Provide new import alias `#omnichannel/composables` to allow for explicit imports of composables provided by the `@scayle/omnichannel-nuxt` package instead of only relying on the Nuxt auto-import functionality; Add import alias `#omnichannel/composables` to package.json imports and explicitly added import alias to build transpilation to prevent potential build issues
|
|
8
|
+
|
|
3
9
|
## 3.0.0
|
|
4
10
|
|
|
5
11
|
### Major Changes
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -28,6 +28,10 @@ const module = defineNuxtModule({
|
|
|
28
28
|
resolve("./runtime/constants/httpStatus")
|
|
29
29
|
);
|
|
30
30
|
});
|
|
31
|
+
nuxt.options.alias["#omnichannel/composables"] = resolve(
|
|
32
|
+
"./runtime/composables"
|
|
33
|
+
);
|
|
34
|
+
nuxt.options.build.transpile.push("#omnichannel/composables");
|
|
31
35
|
addImportsDir(resolve("runtime/composables"));
|
|
32
36
|
}
|
|
33
37
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scayle/omnichannel-nuxt",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "Collection of essential utilities to work with omnichannel",
|
|
5
5
|
"author": "SCAYLE Commerce Engine",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,6 +19,9 @@
|
|
|
19
19
|
"import": "./dist/index.mjs"
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
|
+
"imports": {
|
|
23
|
+
"#omnichannel/composables": "./dist/runtime/composables/index.mjs"
|
|
24
|
+
},
|
|
22
25
|
"main": "./dist/index.mjs",
|
|
23
26
|
"type": "module",
|
|
24
27
|
"types": "./dist/index.d.ts",
|
|
@@ -29,11 +32,6 @@
|
|
|
29
32
|
"engines": {
|
|
30
33
|
"node": ">= 18.15.0"
|
|
31
34
|
},
|
|
32
|
-
"build": {
|
|
33
|
-
"entries": [
|
|
34
|
-
"./src/index"
|
|
35
|
-
]
|
|
36
|
-
},
|
|
37
35
|
"compatibility": {
|
|
38
36
|
"nuxt": "^2.17.3 || ^3.9.0"
|
|
39
37
|
},
|
|
@@ -55,6 +53,14 @@
|
|
|
55
53
|
"@nuxtjs/composition-api": "0.34.0",
|
|
56
54
|
"express": "4.19.2"
|
|
57
55
|
},
|
|
56
|
+
"peerDependenciesMeta": {
|
|
57
|
+
"@nuxtjs/composition-api": {
|
|
58
|
+
"optional": true
|
|
59
|
+
},
|
|
60
|
+
"express": {
|
|
61
|
+
"optional": true
|
|
62
|
+
}
|
|
63
|
+
},
|
|
58
64
|
"dependencies": {
|
|
59
65
|
"@nuxt/kit": "3.11.1",
|
|
60
66
|
"body-parser": "1.20.2",
|
|
@@ -62,17 +68,18 @@
|
|
|
62
68
|
"utility-types": "3.11.0"
|
|
63
69
|
},
|
|
64
70
|
"devDependencies": {
|
|
71
|
+
"@nuxt/eslint": "0.3.13",
|
|
65
72
|
"@nuxt/module-builder": "0.5.5",
|
|
66
73
|
"@nuxt/schema": "3.11.1",
|
|
67
74
|
"@nuxt/types": "2.17.3",
|
|
68
75
|
"@nuxtjs/composition-api": "0.34.0",
|
|
69
|
-
"@scayle/eslint-config-storefront": "
|
|
76
|
+
"@scayle/eslint-config-storefront": "4.2.0",
|
|
70
77
|
"@types/body-parser": "1.19.5",
|
|
71
78
|
"@types/express": "4.17.21",
|
|
72
|
-
"@types/node": "20.12.
|
|
79
|
+
"@types/node": "20.12.12",
|
|
73
80
|
"@types/qs": "6.9.15",
|
|
74
81
|
"dprint": "0.45.1",
|
|
75
|
-
"eslint": "
|
|
82
|
+
"eslint": "9.3.0",
|
|
76
83
|
"eslint-formatter-gitlab": "5.1.0",
|
|
77
84
|
"h3": "1.11.1",
|
|
78
85
|
"nuxi": "3.11.1",
|
|
@@ -80,6 +87,6 @@
|
|
|
80
87
|
"vue": "2.7.16"
|
|
81
88
|
},
|
|
82
89
|
"volta": {
|
|
83
|
-
"node": "20.
|
|
90
|
+
"node": "20.13.1"
|
|
84
91
|
}
|
|
85
92
|
}
|