@grafana/create-plugin 2.2.1-canary.481.f400697.0 → 2.2.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,21 @@
|
|
|
1
|
+
# v2.2.1 (Fri Oct 20 2023)
|
|
2
|
+
|
|
3
|
+
:tada: This release contains work from a new contributor! :tada:
|
|
4
|
+
|
|
5
|
+
Thank you, Domas ([@domasx2](https://github.com/domasx2)), for all your work!
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fix
|
|
8
|
+
|
|
9
|
+
- Templates/Webpack: Include full path in dev mode image output filename [#388](https://github.com/grafana/plugin-tools/pull/388) ([@domasx2](https://github.com/domasx2))
|
|
10
|
+
- Docs: Fix broken links in package files [#476](https://github.com/grafana/plugin-tools/pull/476) ([@josmperez](https://github.com/josmperez))
|
|
11
|
+
|
|
12
|
+
#### Authors: 2
|
|
13
|
+
|
|
14
|
+
- Domas ([@domasx2](https://github.com/domasx2))
|
|
15
|
+
- Joseph Perez ([@josmperez](https://github.com/josmperez))
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
1
19
|
# v2.2.0 (Tue Oct 17 2023)
|
|
2
20
|
|
|
3
21
|
#### 🚀 Enhancement
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "2.2.1
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"directory": "packages/create-plugin",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"engines": {
|
|
67
67
|
"node": ">=18"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "3892dd32454cca7324c5c8d234e93daf8db1bcdc"
|
|
70
70
|
}
|
|
@@ -110,7 +110,7 @@ const config = async (env): Promise<Configuration> => {
|
|
|
110
110
|
// Keep publicPath relative for host.com/grafana/ deployments
|
|
111
111
|
publicPath: `public/plugins/${pluginJson.id}/img/`,
|
|
112
112
|
outputPath: 'img/',
|
|
113
|
-
filename: Boolean(env.production) ? '[hash][ext]' : '[
|
|
113
|
+
filename: Boolean(env.production) ? '[hash][ext]' : '[file]',
|
|
114
114
|
},
|
|
115
115
|
},
|
|
116
116
|
{
|