@grafana/create-plugin 0.7.0 → 0.7.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,15 @@
|
|
|
1
|
+
# v0.7.1 (Tue Nov 29 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Create Plugin: Remove links pointing to deprecated starter templates [#162](https://github.com/grafana/plugin-tools/pull/162) ([@jackw](https://github.com/jackw))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v0.7.0 (Tue Nov 29 2022)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -194,5 +194,5 @@ function printSuccessMessage(answers) {
|
|
|
194
194
|
], (answers.hasBackend ? [' * `mage -v build:linux` to build the plugin backend code.'] : []), true), [
|
|
195
195
|
' * Open http://localhost:3000 in your browser to create a dashboard to begin developing your plugin.',
|
|
196
196
|
], false);
|
|
197
|
-
return "\n Congratulations on scaffolding a Grafana ".concat(answers.
|
|
197
|
+
return "\n Congratulations on scaffolding a Grafana ".concat(answers.pluginType, " plugin! \uD83D\uDE80\n\n ## What's next?\n Navigate into ./").concat(directory, " and run the following commands to get started:\n").concat(commands.map(function (command) { return command; }).join('\n'), "\n\n View the README.md for futher information.\n Learn more about Grafana Plugins at https://grafana.com/docs/grafana/latest/plugins/developing/development/\n\n");
|
|
198
198
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"directory": "packages/create-plugin",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"engines": {
|
|
61
61
|
"node": ">=16"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "71c6149299eec6c097d1caadd8c3f66b09bd6b49"
|
|
64
64
|
}
|
|
@@ -257,7 +257,7 @@ function printSuccessMessage(answers: CliArgs) {
|
|
|
257
257
|
];
|
|
258
258
|
|
|
259
259
|
return `
|
|
260
|
-
Congratulations on scaffolding a Grafana ${answers.
|
|
260
|
+
Congratulations on scaffolding a Grafana ${answers.pluginType} plugin! 🚀
|
|
261
261
|
|
|
262
262
|
## What's next?
|
|
263
263
|
Navigate into ./${directory} and run the following commands to get started:
|
|
@@ -16,16 +16,7 @@
|
|
|
16
16
|
"small": "img/logo.svg",
|
|
17
17
|
"large": "img/logo.svg"
|
|
18
18
|
},
|
|
19
|
-
"links": [
|
|
20
|
-
{
|
|
21
|
-
"name": "Website",
|
|
22
|
-
"url": "https://github.com/grafana/grafana-starter-datasource"
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"name": "License",
|
|
26
|
-
"url": "https://github.com/grafana/grafana-starter-datasource/blob/master/LICENSE"
|
|
27
|
-
}
|
|
28
|
-
],
|
|
19
|
+
"links": [],
|
|
29
20
|
"screenshots": [],
|
|
30
21
|
"version": "%VERSION%",
|
|
31
22
|
"updated": "%TODAY%"
|
|
@@ -13,16 +13,7 @@
|
|
|
13
13
|
"small": "img/logo.svg",
|
|
14
14
|
"large": "img/logo.svg"
|
|
15
15
|
},
|
|
16
|
-
"links": [
|
|
17
|
-
{
|
|
18
|
-
"name": "Website",
|
|
19
|
-
"url": "https://github.com/grafana/grafana-starter-panel"
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
"name": "License",
|
|
23
|
-
"url": "https://github.com/grafana/grafana-starter-panel/blob/master/LICENSE"
|
|
24
|
-
}
|
|
25
|
-
],
|
|
16
|
+
"links": [],
|
|
26
17
|
"screenshots": [],
|
|
27
18
|
"version": "%VERSION%",
|
|
28
19
|
"updated": "%TODAY%"
|