@grafana/create-plugin 5.23.0 → 5.23.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.23.1 (Mon Jun 16 2025)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - fix: don't exit Webpack on ESLint error in development [#1890](https://github.com/grafana/plugin-tools/pull/1890) ([@MattIPv4](https://github.com/MattIPv4))
6
+
7
+ #### Authors: 1
8
+
9
+ - Matt Cowley ([@MattIPv4](https://github.com/MattIPv4))
10
+
11
+ ---
12
+
1
13
  # v5.23.0 (Mon Jun 16 2025)
2
14
 
3
15
  #### 🚀 Enhancement
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "5.23.0",
3
+ "version": "5.23.1",
4
4
  "repository": {
5
5
  "directory": "packages/create-plugin",
6
6
  "url": "https://github.com/grafana/plugin-tools"
@@ -58,5 +58,5 @@
58
58
  "engines": {
59
59
  "node": ">=20"
60
60
  },
61
- "gitHead": "023a2d690bbc56f6761f75cca67d29ec1cc009ff"
61
+ "gitHead": "4ffa91d895d1438815d3191627beac82d7393836"
62
62
  }
@@ -256,6 +256,7 @@ const config = async (env: Env): Promise<Configuration> => {
256
256
  new ESLintPlugin({
257
257
  extensions: ['.ts', '.tsx'],
258
258
  lintDirtyModulesOnly: Boolean(env.development), // don't lint on start, only lint changed files
259
+ failOnError: Boolean(env.production),
259
260
  }),
260
261
  ] : []),
261
262
  ],