@vendure/dashboard 3.3.5-master-202506201437 → 3.3.5-master-202506231131

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.
@@ -33,7 +33,7 @@ export function dashboardMetadataPlugin(options) {
33
33
  export async function runDashboardExtensions() {
34
34
  ${pluginsWithExtensions
35
35
  .map(extension => {
36
- return `await import('${extension}');`;
36
+ return `await import(\`${extension}\`);`;
37
37
  })
38
38
  .join('\n')}
39
39
  }`;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vendure/dashboard",
3
3
  "private": false,
4
- "version": "3.3.5-master-202506201437",
4
+ "version": "3.3.5-master-202506231131",
5
5
  "type": "module",
6
6
  "repository": {
7
7
  "type": "git",
@@ -86,8 +86,8 @@
86
86
  "@types/react-dom": "^19.0.4",
87
87
  "@types/react-grid-layout": "^1.3.5",
88
88
  "@uidotdev/usehooks": "^2.4.1",
89
- "@vendure/common": "^3.3.5-master-202506201437",
90
- "@vendure/core": "^3.3.5-master-202506201437",
89
+ "@vendure/common": "^3.3.5-master-202506231131",
90
+ "@vendure/core": "^3.3.5-master-202506231131",
91
91
  "@vitejs/plugin-react": "^4.3.4",
92
92
  "awesome-graphql-client": "^2.1.0",
93
93
  "class-variance-authority": "^0.7.1",
@@ -130,5 +130,5 @@
130
130
  "lightningcss-linux-arm64-musl": "^1.29.3",
131
131
  "lightningcss-linux-x64-musl": "^1.29.1"
132
132
  },
133
- "gitHead": "a3a70099c3e41947dd3626f530b01805d633ac5a"
133
+ "gitHead": "47318761ef74cfdd0e5452a33f5849b444f405ca"
134
134
  }
@@ -44,7 +44,7 @@ export function dashboardMetadataPlugin(options: { rootDir: string }): Plugin {
44
44
  export async function runDashboardExtensions() {
45
45
  ${pluginsWithExtensions
46
46
  .map(extension => {
47
- return `await import('${extension}');`;
47
+ return `await import(\`${extension}\`);`;
48
48
  })
49
49
  .join('\n')}
50
50
  }`;