@scayle/storefront-nuxt 8.9.2 → 8.10.0

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,15 @@
1
1
  # @scayle/storefront-nuxt
2
2
 
3
+ ## 8.10.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Remove explicit inline external for runtime helpers
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependency `@vueuse/core@12.6.1` to `@vueuse/core@12.7.0`
12
+
3
13
  ## 8.9.2
4
14
 
5
15
  ### Patch Changes
package/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scayle/storefront-nuxt",
3
- "version": "8.9.2",
3
+ "version": "8.10.0",
4
4
  "configKey": "storefront",
5
5
  "compatibility": {
6
6
  "nuxt": "^3.9.0"
package/dist/module.mjs CHANGED
@@ -45,7 +45,7 @@ export default {
45
45
  }`;
46
46
  }
47
47
  const PACKAGE_NAME = "@scayle/storefront-nuxt";
48
- const PACKAGE_VERSION = "8.9.2";
48
+ const PACKAGE_VERSION = "8.10.0";
49
49
  const logger = createConsola({
50
50
  fancy: true,
51
51
  formatOptions: {
@@ -83,34 +83,6 @@ function createRpcMethodTypeDeclaration(customRpcImports) {
83
83
  function nitroSetup(nitroConfig, config) {
84
84
  const { resolve } = createResolver(import.meta.url);
85
85
  const { apiBasePath, customRpcImports, coreMethodNames, usedDrivers } = config;
86
- nitroConfig.externals = nitroConfig.externals || {};
87
- nitroConfig.externals.inline = nitroConfig.externals.inline || [];
88
- const runtimePaths = [
89
- "handler",
90
- "error/handler",
91
- "campaignKey",
92
- "cached",
93
- "context",
94
- "createLog",
95
- "log",
96
- "api/cacheAuth",
97
- "rpc/rpcCall",
98
- "rpc/rpcRequest",
99
- "server/middleware/oauth",
100
- "server/middleware/redirects",
101
- "server/middleware/cache",
102
- "server/utils/cacheStorage",
103
- "utils/zodSchema",
104
- "nitro/plugins/cacheRuntimeConfig",
105
- "nitro/plugins/nitroLogger",
106
- "nitro/plugins/nitroRuntimeStorageConfig",
107
- "nitro/plugins/nitroSetXPoweredByHeader",
108
- "nitro/plugins/configValidation"
109
- ];
110
- runtimePaths.forEach((path) => {
111
- const file = resolve(`./runtime/${path}`);
112
- nitroConfig.externals?.inline?.push(file);
113
- });
114
86
  nitroConfig.replace = nitroConfig.replace || {};
115
87
  nitroConfig.replace["process.env.SFC_OMIT_MD5"] = stringToBoolean(
116
88
  process.env.SFC_OMIT_MD5
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@scayle/storefront-nuxt",
3
3
  "type": "module",
4
- "version": "8.9.2",
4
+ "version": "8.10.0",
5
5
  "description": "Nuxt integration for the SCAYLE Commerce Engine and Storefront API",
6
6
  "author": "SCAYLE Commerce Engine",
7
7
  "license": "MIT",
@@ -74,7 +74,7 @@
74
74
  "@scayle/h3-session": "0.6.0",
75
75
  "@scayle/storefront-core": "8.7.0",
76
76
  "@scayle/unstorage-compression-driver": "^0.2.3",
77
- "@vueuse/core": "12.6.1",
77
+ "@vueuse/core": "12.7.0",
78
78
  "consola": "^3.2.3",
79
79
  "core-js": "^3.37.1",
80
80
  "defu": "^6.1.4",
@@ -109,7 +109,7 @@
109
109
  "nuxt": "3.14.1592",
110
110
  "publint": "0.2.12",
111
111
  "typescript": "5.7.3",
112
- "vue-tsc": "2.2.0",
112
+ "vue-tsc": "2.2.2",
113
113
  "vitest": "2.1.9"
114
114
  },
115
115
  "peerDependencies": {