@grafana/create-plugin 4.10.6 → 4.11.0
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.11.0 (Mon May 27 2024)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Create-plugin: stop extracting plugin-meta on builds [#923](https://github.com/grafana/plugin-tools/pull/923) ([@leventebalogh](https://github.com/leventebalogh))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Levente Balogh ([@leventebalogh](https://github.com/leventebalogh))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.10.6 (Mon May 27 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.
|
|
3
|
+
"version": "4.11.0",
|
|
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": "
|
|
90
|
+
"gitHead": "0115340dd531278b734bdfc171ce604b58e6afdc"
|
|
91
91
|
}
|
|
@@ -12,7 +12,6 @@ import LiveReloadPlugin from 'webpack-livereload-plugin';
|
|
|
12
12
|
import path from 'path';
|
|
13
13
|
import ReplaceInFileWebpackPlugin from 'replace-in-file-webpack-plugin';
|
|
14
14
|
import { Configuration } from 'webpack';
|
|
15
|
-
import { GrafanaPluginMetaExtractor } from '@grafana/plugin-meta-extractor';
|
|
16
15
|
|
|
17
16
|
import { getPackageJson, getPluginJson, hasReadme, getEntries, isWSL } from './utils';
|
|
18
17
|
import { SOURCE_DIR, DIST_DIR } from './constants';
|
|
@@ -143,7 +142,6 @@ const config = async (env): Promise<Configuration> => {
|
|
|
143
142
|
},
|
|
144
143
|
|
|
145
144
|
plugins: [
|
|
146
|
-
new GrafanaPluginMetaExtractor(),
|
|
147
145
|
new CopyWebpackPlugin({
|
|
148
146
|
patterns: [
|
|
149
147
|
// If src/README.md exists use it; otherwise the root README
|