@grafana/create-plugin 4.2.5 → 4.2.6-canary.739.9a473be.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.
|
@@ -13,7 +13,8 @@ export function printGenerateSuccessMessage(answers) {
|
|
|
13
13
|
'- `mage -v build:linux` to build the plugin backend code. Rerun this command every time you edit your backend files.',
|
|
14
14
|
]
|
|
15
15
|
: []),
|
|
16
|
-
'- `docker-compose up` to start a grafana development server.
|
|
16
|
+
'- `docker-compose up` to start a grafana development server. ' +
|
|
17
|
+
(answers.hasBackend ? 'Restart this command after each time you run mage to run your new backend code.' : ''),
|
|
17
18
|
'- Open http://localhost:3000 in your browser to create a dashboard to begin developing your plugin.',
|
|
18
19
|
];
|
|
19
20
|
const msg = `\n# Congratulations on scaffolding a Grafana ${answers.pluginType} plugin! 🚀
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.6-canary.739.9a473be.0",
|
|
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": "
|
|
90
|
+
"gitHead": "9a473be5a93dbf3ba6cd900fa93ea90e85df54ee"
|
|
91
91
|
}
|
|
@@ -15,7 +15,8 @@ export function printGenerateSuccessMessage(answers: CliArgs) {
|
|
|
15
15
|
'- `mage -v build:linux` to build the plugin backend code. Rerun this command every time you edit your backend files.',
|
|
16
16
|
]
|
|
17
17
|
: []),
|
|
18
|
-
'- `docker-compose up` to start a grafana development server.
|
|
18
|
+
'- `docker-compose up` to start a grafana development server. ' +
|
|
19
|
+
(answers.hasBackend ? 'Restart this command after each time you run mage to run your new backend code.' : ''),
|
|
19
20
|
'- Open http://localhost:3000 in your browser to create a dashboard to begin developing your plugin.',
|
|
20
21
|
];
|
|
21
22
|
|