@grafana/create-plugin 4.4.3 → 4.4.4

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/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # v4.4.4 (Thu Mar 28 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Create Plugin: Fix hardcoded path [#846](https://github.com/grafana/plugin-tools/pull/846) ([@oshirohugo](https://github.com/oshirohugo))
6
+
7
+ #### Authors: 1
8
+
9
+ - Hugo Kiyodi Oshiro ([@oshirohugo](https://github.com/oshirohugo))
10
+
11
+ ---
12
+
1
13
  # v4.4.3 (Thu Mar 28 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "4.4.3",
3
+ "version": "4.4.4",
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": "1555b0a18fb078459d9baa81b026455c14ef5359"
90
+ "gitHead": "a274091414096629a8509b76e136a37f25ecdcbd"
91
91
  }
@@ -6,7 +6,7 @@ user=root
6
6
  user=root
7
7
  directory=/var/lib/grafana
8
8
  {{#if hasBackend}}
9
- command=bash -c 'while [ ! -f /root/grafana-surrealdb-datasource/dist/gpx_{{ snakeCase pluginName }}* ]; do sleep 1; done; /run.sh'
9
+ command=bash -c 'while [ ! -f /root/{{ pluginId }}/dist/gpx_{{ snakeCase pluginName }}* ]; do sleep 1; done; /run.sh'
10
10
  {{else}}
11
11
  command=/run.sh
12
12
  {{/if}}