@grafana/create-plugin 5.3.1-canary.1071.d689f04.0 → 5.3.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
+ # v5.3.1 (Wed Aug 21 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Update grafana dependencies [#1068](https://github.com/grafana/plugin-tools/pull/1068) ([@renovate[bot]](https://github.com/renovate[bot]))
6
+
7
+ #### Authors: 1
8
+
9
+ - [@renovate[bot]](https://github.com/renovate[bot])
10
+
11
+ ---
12
+
1
13
  # v5.3.0 (Wed Aug 21 2024)
2
14
 
3
15
  #### 🚀 Enhancement
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "5.3.1-canary.1071.d689f04.0",
3
+ "version": "5.3.1",
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": "d689f043b16d74b4415fc1192439f0180349a82e"
90
+ "gitHead": "acc595c46c832320e3e90f7db18dd69728b4ecd8"
91
91
  }
@@ -98,18 +98,6 @@ const config = async (env): Promise<Configuration> => {
98
98
 
99
99
  module: {
100
100
  rules: [
101
- // This must come first in the rules array otherwise it breaks sourcemaps.
102
- {
103
- test: /src\/(?:.*\/)?module\.tsx?$/,
104
- use: [
105
- {
106
- loader: 'imports-loader',
107
- options: {
108
- imports: `side-effects grafana-public-path`,
109
- },
110
- },
111
- ],
112
- },
113
101
  {
114
102
  exclude: /(node_modules)/,
115
103
  test: /\.[tj]sx?$/,
@@ -130,6 +118,17 @@ const config = async (env): Promise<Configuration> => {
130
118
  },
131
119
  },
132
120
  },
121
+ {
122
+ test: /src\/(?:.*\/)?module\.tsx?$/,
123
+ use: [
124
+ {
125
+ loader: 'imports-loader',
126
+ options: {
127
+ imports: `side-effects grafana-public-path`,
128
+ },
129
+ },
130
+ ],
131
+ },
133
132
  {
134
133
  test: /\.css$/,
135
134
  use: ['style-loader', 'css-loader'],
@@ -22,7 +22,7 @@
22
22
  "@grafana/e2e": "^11.0.3",
23
23
  "@grafana/e2e-selectors": "^11.1.4",{{/if}}
24
24
  "@grafana/eslint-config": "^7.0.0",{{#if usePlaywright}}
25
- "@grafana/plugin-e2e": "^1.6.1",{{/if}}
25
+ "@grafana/plugin-e2e": "^1.7.1",{{/if}}
26
26
  "@grafana/tsconfig": "^2.0.0",{{#if usePlaywright}}
27
27
  "@playwright/test": "^1.41.2",{{/if}}
28
28
  "@swc/core": "^1.3.90",
@@ -68,7 +68,7 @@
68
68
  "@grafana/runtime": "^11.1.4",
69
69
  "@grafana/ui": "^11.1.4",
70
70
  "@grafana/schema": "^10.4.0",{{#if_eq pluginType "scenesapp"}}
71
- "@grafana/scenes": "^5.10.0",{{/if_eq}}
71
+ "@grafana/scenes": "^5.10.1",{{/if_eq}}
72
72
  "react": "18.2.0",
73
73
  "react-dom": "18.2.0",{{#if isAppType}}
74
74
  "react-router-dom": "^{{ reactRouterVersion }}",