@grafana/create-plugin 1.11.0-canary.356.f817ba0.0 → 1.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
|
+
# v1.11.0 (Wed Aug 16 2023)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- create-plugin: Enable webpack watchOption -> poll if WSL is detected [#356](https://github.com/grafana/plugin-tools/pull/356) ([@Ukochka](https://github.com/Ukochka))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Yulia Shanyrova ([@Ukochka](https://github.com/Ukochka))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.10.1 (Mon Aug 14 2023)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Create Grafana plugins with ease.
|
|
|
20
20
|
|
|
21
21
|
- [Plugin Tools docs](https://grafana.github.io/plugin-tools/)
|
|
22
22
|
- [Plugin developer docs](https://grafana.com/docs/grafana/latest/developers/plugins/)
|
|
23
|
-
- [Plugin migration guide](https://grafana.com/docs/grafana/latest/developers/plugins/migration-guide
|
|
23
|
+
- [Plugin migration guide](https://grafana.com/docs/grafana/latest/developers/plugins/migration-guide)
|
|
24
24
|
|
|
25
25
|
**`@grafana/create-plugin`** works on macOS, Linux and Windows Subsystem for Linux (WSL).<br />
|
|
26
26
|
If something doesn't work, please [file an issue](https://github.com/grafana/plugin-tools/issues/new).<br />
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "1.11.0
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"directory": "packages/create-plugin",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"engines": {
|
|
67
67
|
"node": ">=16"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "b989f6bb20b4f88c048c00c2d48b6a4b38728f6c"
|
|
70
70
|
}
|
|
@@ -19,7 +19,7 @@ import { SOURCE_DIR, DIST_DIR } from './constants';
|
|
|
19
19
|
const pluginJson = getPluginJson();
|
|
20
20
|
|
|
21
21
|
const config = async (env): Promise<Configuration> => {
|
|
22
|
-
|
|
22
|
+
const baseConfig: Configuration = {
|
|
23
23
|
cache: {
|
|
24
24
|
type: 'filesystem',
|
|
25
25
|
buildDependencies: {
|