@grafana/create-plugin 6.2.2 → 6.2.3-canary.2318.19599543029.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/dist/constants.js CHANGED
@@ -1,13 +1,13 @@
1
1
  import { fileURLToPath } from 'node:url';
2
2
  import path from 'node:path';
3
3
 
4
- const __dirname = fileURLToPath(new URL(".", import.meta.url));
4
+ const __dirname$1 = fileURLToPath(new URL(".", import.meta.url));
5
5
  const IS_DEV = process.env.CREATE_PLUGIN_DEV !== void 0;
6
6
  const EXPORT_PATH_PREFIX = process.cwd();
7
- path.join(__dirname, "dist");
8
- const TEMPLATES_DIR = path.join(__dirname, "..", "templates");
7
+ path.join(__dirname$1, "dist");
8
+ const TEMPLATES_DIR = path.join(__dirname$1, "..", "templates");
9
9
  const PARTIALS_DIR = path.join(TEMPLATES_DIR, "_partials");
10
- path.join(__dirname, "..", "fixtures");
10
+ path.join(__dirname$1, "..", "fixtures");
11
11
  const TEMPLATE_PATHS = {
12
12
  app: path.join(TEMPLATES_DIR, "app"),
13
13
  scenesapp: path.join(TEMPLATES_DIR, "scenes-app"),
@@ -2,9 +2,9 @@ import { findUpSync } from 'find-up';
2
2
  import { readFileSync } from 'node:fs';
3
3
  import { fileURLToPath } from 'node:url';
4
4
 
5
- const __dirname = fileURLToPath(new URL(".", import.meta.url));
5
+ const __dirname$1 = fileURLToPath(new URL(".", import.meta.url));
6
6
  function getVersion() {
7
- const packageJsonPath = findUpSync("package.json", { cwd: __dirname });
7
+ const packageJsonPath = findUpSync("package.json", { cwd: __dirname$1 });
8
8
  if (!packageJsonPath) {
9
9
  throw `Could not find package.json`;
10
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "6.2.2",
3
+ "version": "6.2.3-canary.2318.19599543029.0",
4
4
  "repository": {
5
5
  "directory": "packages/create-plugin",
6
6
  "url": "https://github.com/grafana/plugin-tools"
@@ -61,5 +61,5 @@
61
61
  "engines": {
62
62
  "node": ">=20"
63
63
  },
64
- "gitHead": "68bb4d4e24c0cc794a6c9de8cbdb70aa1d666592"
64
+ "gitHead": "bb230360966c26c46890bfc2a994cb7e18482018"
65
65
  }
@@ -7,7 +7,7 @@ services:
7
7
  context: .
8
8
  args:
9
9
  grafana_image: ${GRAFANA_IMAGE:-{{~grafanaImage~}} }
10
- grafana_version: ${GRAFANA_VERSION:-12.2.1}
10
+ grafana_version: ${GRAFANA_VERSION:-12.3.0}
11
11
  development: ${DEVELOPMENT:-false}
12
12
  anonymous_auth_enabled: ${ANONYMOUS_AUTH_ENABLED:-true}
13
13
  ports:
@@ -72,11 +72,11 @@
72
72
  },
73
73
  "dependencies": {
74
74
  "@emotion/css": "11.10.6",
75
- "@grafana/data": "^12.2.1",
76
- "@grafana/i18n": "^12.2.1",
77
- "@grafana/runtime": "^12.2.1",
78
- "@grafana/ui": "^12.2.1",
79
- "@grafana/schema": "^12.2.1",{{#if_eq pluginType "scenesapp" }}
75
+ "@grafana/data": "^12.3.0",
76
+ "@grafana/i18n": "^12.3.0",
77
+ "@grafana/runtime": "^12.3.0",
78
+ "@grafana/ui": "^12.3.0",
79
+ "@grafana/schema": "^12.3.0",{{#if_eq pluginType "scenesapp" }}
80
80
  "@grafana/scenes": "{{ scenesVersion }}",{{/if_eq}}
81
81
  "react": "^18.3.0",
82
82
  "react-dom": "^18.3.0"{{#if isAppType}},