@grafana/create-plugin 4.6.2 → 4.7.0-canary.883.3635606.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "4.6.2",
3
+ "version": "4.7.0-canary.883.3635606.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": "8abe46bc597ff004ad174903ec61a005edd262a3"
90
+ "gitHead": "36356061f59c5a0fd16e9413ac4c50e666033525"
91
91
  }
@@ -11,6 +11,7 @@ services:
11
11
  args:
12
12
  grafana_image: ${GRAFANA_IMAGE:-{{~grafanaImage~}} }
13
13
  grafana_version: ${GRAFANA_VERSION:-{{~grafanaVersion~}} }
14
+ development: ${DEVELOPMENT:-true}
14
15
  ports:
15
16
  - 3000:3000/tcp
16
17
  {{#if hasBackend}}
@@ -86,6 +86,8 @@ jobs:
86
86
  - name: Start grafana docker
87
87
  if: steps.check-for-e2e.outputs.has-e2e == 'true'
88
88
  run: docker-compose up -d
89
+ env:
90
+ DEVELOPMENT: "false"
89
91
 
90
92
  - name: Wait for Grafana to start
91
93
  if: steps.check-for-e2e.outputs.has-e2e == 'true'