@grafana/create-plugin 5.2.5-canary.1068.8edc68e.0 → 5.2.5-canary.1069.5ddebbd.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "5.2.5-canary.1068.8edc68e.0",
3
+ "version": "5.2.5-canary.1069.5ddebbd.0",
4
4
  "repository": {
5
5
  "directory": "packages/create-plugin",
6
6
  "url": "https://github.com/grafana/plugin-tools"
@@ -87,5 +87,5 @@
87
87
  "engines": {
88
88
  "node": ">=20"
89
89
  },
90
- "gitHead": "8edc68e41c4d6c27f79a7656983b5b04f43dcec6"
90
+ "gitHead": "5ddebbdb8b41b280ad3c5434e21874462cea504f"
91
91
  }
@@ -22,7 +22,7 @@ const pluginJson = getPluginJson();
22
22
  const cpVersion = getCPConfigVersion();
23
23
 
24
24
  const virtualPublicPath = new VirtualModulesPlugin({
25
- 'node_modules/grafana-public-path.js': `
25
+ 'virtual_modules/grafana-public-path.js': `
26
26
  import amdMetaModule from 'amd-module';
27
27
 
28
28
  __webpack_public_path__ =
@@ -246,7 +246,7 @@ const config = async (env): Promise<Configuration> => {
246
246
  resolve: {
247
247
  extensions: ['.js', '.jsx', '.ts', '.tsx'],
248
248
  // handle resolving "rootDir" paths
249
- modules: [path.resolve(process.cwd(), 'src'), 'node_modules'],
249
+ modules: [path.resolve(process.cwd(), 'src'), 'node_modules', 'virtual_modules'],
250
250
  unsafeCache: true,
251
251
  },
252
252
  };
@@ -68,7 +68,7 @@
68
68
  "@grafana/runtime": "^11.1.4",
69
69
  "@grafana/ui": "^11.1.4",
70
70
  "@grafana/schema": "^10.4.0",{{#if_eq pluginType "scenesapp"}}
71
- "@grafana/scenes": "^5.10.1",{{/if_eq}}
71
+ "@grafana/scenes": "^5.10.0",{{/if_eq}}
72
72
  "react": "18.2.0",
73
73
  "react-dom": "18.2.0",{{#if isAppType}}
74
74
  "react-router-dom": "^{{ reactRouterVersion }}",