@vendure/dashboard 3.5.1-master-202511070232 → 3.5.1-master-202511080229

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.
@@ -1,4 +1,5 @@
1
1
  import path from 'path';
2
+ import { pathToFileURL } from 'node:url';
2
3
  import { getConfigLoaderApi } from './vite-plugin-config-loader.js';
3
4
  const virtualModuleId = 'virtual:dashboard-extensions';
4
5
  const resolvedVirtualModuleId = `\0${virtualModuleId}`;
@@ -50,7 +51,7 @@ export function dashboardMetadataPlugin() {
50
51
  export async function runDashboardExtensions() {
51
52
  ${pluginsWithExtensions
52
53
  .map(extension => {
53
- return `await import(\`${extension}\`);`;
54
+ return `await import(\`${pathToFileURL(extension)}\`);`;
54
55
  })
55
56
  .join('\n')}
56
57
  }`;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vendure/dashboard",
3
3
  "private": false,
4
- "version": "3.5.1-master-202511070232",
4
+ "version": "3.5.1-master-202511080229",
5
5
  "type": "module",
6
6
  "repository": {
7
7
  "type": "git",
@@ -155,8 +155,8 @@
155
155
  "@storybook/addon-vitest": "^10.0.0-beta.9",
156
156
  "@storybook/react-vite": "^10.0.0-beta.9",
157
157
  "@types/node": "^22.13.4",
158
- "@vendure/common": "^3.5.1-master-202511070232",
159
- "@vendure/core": "^3.5.1-master-202511070232",
158
+ "@vendure/common": "^3.5.1-master-202511080229",
159
+ "@vendure/core": "^3.5.1-master-202511080229",
160
160
  "@vitest/browser": "^3.2.4",
161
161
  "@vitest/coverage-v8": "^3.2.4",
162
162
  "eslint": "^9.19.0",
@@ -173,5 +173,5 @@
173
173
  "lightningcss-linux-arm64-musl": "^1.29.3",
174
174
  "lightningcss-linux-x64-musl": "^1.29.1"
175
175
  },
176
- "gitHead": "f1d4de23a9b4896cfad004a458d8901ebfb40256"
176
+ "gitHead": "655528c214d73edc5e379cf281696b23d836f3d1"
177
177
  }