@scayle/storefront-nuxt 7.71.0 → 7.71.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @scayle/storefront-nuxt
2
2
 
3
+ ## 7.71.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Correctly set the `optimizeDeps` for the new `@scayle/storefront-api` package
8
+ - Updated dependencies
9
+ - @scayle/storefront-core@7.51.1
10
+
3
11
  ## 7.71.0
4
12
 
5
13
  ### Minor Changes
package/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scayle/storefront-nuxt",
3
- "version": "7.70.0",
3
+ "version": "7.71.0",
4
4
  "configKey": "storefront",
5
5
  "compatibility": {
6
6
  "nuxt": "^3.9.0"
package/dist/module.mjs CHANGED
@@ -60,7 +60,7 @@ export default {
60
60
  }`;
61
61
  }
62
62
  const PACKAGE_NAME = "@scayle/storefront-nuxt";
63
- const PACKAGE_VERSION = "7.70.0";
63
+ const PACKAGE_VERSION = "7.71.0";
64
64
  const module = defineNuxtModule({
65
65
  meta: {
66
66
  name: PACKAGE_NAME,
@@ -124,7 +124,7 @@ const module = defineNuxtModule({
124
124
  config.optimizeDeps.include.push(
125
125
  PACKAGE_NAME,
126
126
  "@scayle/storefront-core",
127
- "@aboutyou/backbone",
127
+ "@scayle/storefront-api",
128
128
  "slugify"
129
129
  );
130
130
  });
@@ -4,7 +4,7 @@ type Options = Partial<{
4
4
  key: string;
5
5
  }>;
6
6
  export declare function useShopConfiguration({ options, key, }?: Options): Promise<{
7
- data: import("vue").Ref<import("@scayle/storefront-api").ShopConfigurationResponseData | undefined>;
7
+ data: import("vue").Ref<import("@scayle/storefront-api").ShopConfiguration | undefined>;
8
8
  fetching: import("vue").Ref<boolean>;
9
9
  fetch: () => Promise<void>;
10
10
  error: import("vue").Ref<import("nuxt/app").NuxtError<unknown> | undefined>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@scayle/storefront-nuxt",
3
3
  "type": "module",
4
- "version": "7.71.0",
4
+ "version": "7.71.1",
5
5
  "description": "Nuxt integration for the SCAYLE Commerce Engine and Storefront API",
6
6
  "author": "SCAYLE Commerce Engine",
7
7
  "license": "MIT",
@@ -63,7 +63,7 @@
63
63
  "@nuxt/kit": "3.11.1",
64
64
  "@opentelemetry/api": "1.8.0",
65
65
  "@scayle/h3-session": "0.4.0",
66
- "@scayle/storefront-core": "7.51.0",
66
+ "@scayle/storefront-core": "7.51.1",
67
67
  "@scayle/unstorage-compression-driver": "0.1.3",
68
68
  "@vueuse/core": "10.9.0",
69
69
  "consola": "3.2.3",
@@ -80,12 +80,12 @@
80
80
  "yn": "5.0.0"
81
81
  },
82
82
  "devDependencies": {
83
- "@nuxt/eslint": "0.3.12",
83
+ "@nuxt/eslint": "0.3.13",
84
84
  "@nuxt/module-builder": "0.5.5",
85
85
  "@nuxt/schema": "3.11.1",
86
86
  "@nuxt/test-utils": "3.13.0",
87
87
  "@scayle/eslint-config-storefront": "4.2.0",
88
- "@scayle/eslint-plugin-vue-composable": "0.1.1",
88
+ "@scayle/eslint-plugin-vue-composable": "0.2.0",
89
89
  "@types/node": "20.12.12",
90
90
  "dprint": "0.45.1",
91
91
  "eslint": "9.2.0",
@@ -95,7 +95,7 @@
95
95
  "node-mocks-http": "1.14.1",
96
96
  "nuxi": "3.11.1",
97
97
  "nuxt": "3.11.1",
98
- "publint": "0.2.7",
98
+ "publint": "0.2.8",
99
99
  "vitest": "1.6.0",
100
100
  "vue-tsc": "2.0.19"
101
101
  },