@grafana/create-plugin 2.10.0 → 2.10.1
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,22 @@
|
|
|
1
|
+
# v2.10.1 (Thu Dec 14 2023)
|
|
2
|
+
|
|
3
|
+
:tada: This release contains work from a new contributor! :tada:
|
|
4
|
+
|
|
5
|
+
Thank you, Carson ([@mure](https://github.com/mure)), for all your work!
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fix
|
|
8
|
+
|
|
9
|
+
- Copy over `query_help.md` when building plugins [#374](https://github.com/grafana/plugin-tools/pull/374) ([@mure](https://github.com/mure) [@jackw](https://github.com/jackw))
|
|
10
|
+
- Minor edits to style of README.md [#583](https://github.com/grafana/plugin-tools/pull/583) ([@josmperez](https://github.com/josmperez))
|
|
11
|
+
|
|
12
|
+
#### Authors: 3
|
|
13
|
+
|
|
14
|
+
- Carson ([@mure](https://github.com/mure))
|
|
15
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
|
16
|
+
- Joseph Perez ([@josmperez](https://github.com/josmperez))
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
1
20
|
# v2.10.0 (Tue Dec 12 2023)
|
|
2
21
|
|
|
3
22
|
#### 🚀 Enhancement
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"directory": "packages/create-plugin",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"engines": {
|
|
67
67
|
"node": ">=20"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "d6027085fe429ab9100466c475350850ca7da220"
|
|
70
70
|
}
|
package/templates/app/README.md
CHANGED
|
@@ -4,9 +4,9 @@ This template is a starting point for building an app plugin for Grafana.
|
|
|
4
4
|
|
|
5
5
|
## What are Grafana app plugins?
|
|
6
6
|
|
|
7
|
-
App plugins can let you create a custom out-of-the-box monitoring experience by custom pages, nested
|
|
7
|
+
App plugins can let you create a custom out-of-the-box monitoring experience by custom pages, nested data sources and panel plugins.
|
|
8
8
|
|
|
9
|
-
##
|
|
9
|
+
## Get started
|
|
10
10
|
|
|
11
11
|
{{#if hasBackend}}-- INSERT BACKEND GETTING STARTED --{{/if}}
|
|
12
12
|
-- INSERT FRONTEND GETTING STARTED --
|
|
@@ -19,4 +19,4 @@ Below you can find source code for existing app plugins and other related docume
|
|
|
19
19
|
|
|
20
20
|
- [Basic app plugin example](https://github.com/grafana/grafana-plugin-examples/tree/master/examples/app-basic#readme)
|
|
21
21
|
- [`plugin.json` documentation](https://grafana.com/developers/plugin-tools/reference-plugin-json)
|
|
22
|
-
- [
|
|
22
|
+
- [Sign a plugin](https://grafana.com/developers/plugin-tools/publish-a-plugin/sign-a-plugin)
|
|
@@ -157,6 +157,7 @@ const config = async (env): Promise<Configuration> => {
|
|
|
157
157
|
{ from: 'img/**/*', to: '.', noErrorOnMissing: true }, // Optional
|
|
158
158
|
{ from: 'libs/**/*', to: '.', noErrorOnMissing: true }, // Optional
|
|
159
159
|
{ from: 'static/**/*', to: '.', noErrorOnMissing: true }, // Optional
|
|
160
|
+
{ from: '**/query_help.md', to: '.', noErrorOnMissing: true}, // Optional
|
|
160
161
|
],
|
|
161
162
|
}),
|
|
162
163
|
// Replace certain template-variables in the README and plugin.json
|