@grafana/create-plugin 4.10.4-canary.910.3aa3ecd.0 → 4.10.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.10.4 (Thu May 16 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Create plugin: Disable development mode by default [#910](https://github.com/grafana/plugin-tools/pull/910) ([@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.10.3 (Wed May 08 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.10.4-canary.910.3aa3ecd.0",
3
+ "version": "4.10.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": "3aa3ecd462b1426bcad980730d9cd6574aeaf296"
90
+ "gitHead": "b917ec2d6470f7778be7b2f0832d22a676685ba1"
91
91
  }
@@ -3,7 +3,7 @@ ARG grafana_image=grafana-enterprise
3
3
 
4
4
  FROM grafana/${grafana_image}:${grafana_version}
5
5
 
6
- ARG development=true
6
+ ARG development=false
7
7
 
8
8
  {{#if hasBackend}}
9
9
  ARG GO_VERSION=1.21.6
@@ -9,7 +9,7 @@ services:
9
9
  args:
10
10
  grafana_image: ${GRAFANA_IMAGE:-{{~grafanaImage~}} }
11
11
  grafana_version: ${GRAFANA_VERSION:-{{~grafanaVersion~}} }
12
- development: ${DEVELOPMENT:-true}
12
+ development: ${DEVELOPMENT:-false}
13
13
  ports:
14
14
  - 3000:3000/tcp
15
15
  {{#if hasBackend}}