@grafana/create-plugin 5.22.0 → 5.22.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.22.1 (Tue May 20 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Chore: fix cspell "doesn't" spelling in create-plugin Webpack config [#1809](https://github.com/grafana/plugin-tools/pull/1809) ([@MattIPv4](https://github.com/MattIPv4))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Matt Cowley ([@MattIPv4](https://github.com/MattIPv4))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v5.22.0 (Wed May 14 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.22.
|
|
3
|
+
"version": "5.22.1",
|
|
4
4
|
"repository": {
|
|
5
5
|
"directory": "packages/create-plugin",
|
|
6
6
|
"url": "https://github.com/grafana/plugin-tools"
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"engines": {
|
|
64
64
|
"node": ">=20"
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "5b72cd15a18b24d218e2815eb42fa36c2d31b9b7"
|
|
67
67
|
}
|
|
@@ -43,7 +43,7 @@ const config = async (env: Env): Promise<Configuration> => {
|
|
|
43
43
|
cache: {
|
|
44
44
|
type: 'filesystem',
|
|
45
45
|
buildDependencies: {
|
|
46
|
-
// __filename
|
|
46
|
+
// __filename doesn't work in Node 24
|
|
47
47
|
config: [path.resolve(process.cwd(), '.config', 'webpack', 'webpack.config.ts')],
|
|
48
48
|
},
|
|
49
49
|
},
|