@grafana/create-plugin 6.2.2 → 6.2.3-canary.2319.19627764817.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.2319.19627764817.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": "e50a28336fb1332866d4462a4ff732510e59f11e"
65
65
  }
@@ -247,7 +247,7 @@ jobs:
247
247
  # required for playwright-gh-pages
248
248
  persist-credentials: true
249
249
  - name: Publish report
250
- uses: grafana/plugin-actions/playwright-gh-pages/deploy-report-pages@deploy-report-pages/v1.0.1
250
+ uses: grafana/plugin-actions/playwright-gh-pages/deploy-report-pages@deploy-report-pages/v1.1.0
251
251
  with:
252
252
  github-token: $\{{ secrets.GITHUB_TOKEN }}
253
253