@grafana/create-plugin 4.11.2 → 4.11.4-canary.946.28f38dd.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,19 @@
1
+ # v4.11.3 (Tue Jun 04 2024)
2
+
3
+ :tada: This release contains work from a new contributor! :tada:
4
+
5
+ Thank you, Giuseppe Marazzi ([@beppemarazzi](https://github.com/beppemarazzi)), for all your work!
6
+
7
+ #### 🐛 Bug Fix
8
+
9
+ - Create Plugin: Fix bad baseUrl path in webpack configuration [#932](https://github.com/grafana/plugin-tools/pull/932) ([@beppemarazzi](https://github.com/beppemarazzi))
10
+
11
+ #### Authors: 1
12
+
13
+ - Giuseppe Marazzi ([@beppemarazzi](https://github.com/beppemarazzi))
14
+
15
+ ---
16
+
1
17
  # v4.11.2 (Tue Jun 04 2024)
2
18
 
3
19
  #### 🐛 Bug Fix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "4.11.2",
3
+ "version": "4.11.4-canary.946.28f38dd.0",
4
4
  "repository": {
5
5
  "directory": "packages/create-plugin",
6
6
  "url": "https://github.com/grafana/plugin-tools"
@@ -54,12 +54,12 @@
54
54
  "glob": "^10.3.10",
55
55
  "handlebars": "^4.7.8",
56
56
  "marked": "^10.0.0",
57
- "marked-terminal": "^6.2.0",
57
+ "marked-terminal": "^7.0.0",
58
58
  "minimist": "^1.2.8",
59
59
  "mkdirp": "^3.0.1",
60
60
  "semver": "^7.3.5",
61
61
  "title-case": "^4.3.0",
62
- "which": "^3.0.0"
62
+ "which": "^4.0.0"
63
63
  },
64
64
  "devDependencies": {
65
65
  "@types/glob": "^7.0.0",
@@ -87,5 +87,5 @@
87
87
  "engines": {
88
88
  "node": ">=20"
89
89
  },
90
- "gitHead": "66e2f6c182e7e2f82fe8ed94ff6b141d16683af5"
90
+ "gitHead": "28f38dd52f1a49df09b07e8507aa4f0c6db061c5"
91
91
  }
@@ -84,7 +84,7 @@ const config = async (env): Promise<Configuration> => {
84
84
  loader: 'swc-loader',
85
85
  options: {
86
86
  jsc: {
87
- baseUrl: path.resolve(__dirname, 'src'),
87
+ baseUrl: path.resolve(process.cwd(), SOURCE_DIR),
88
88
  target: 'es2015',
89
89
  loose: false,
90
90
  parser: {
@@ -24,8 +24,7 @@
24
24
  "@grafana/e2e-selectors": "{{ grafanaVersion }}",{{/if}}
25
25
  "@grafana/eslint-config": "^7.0.0",{{#if usePlaywright}}
26
26
  "@grafana/plugin-e2e": "1.2.0",{{/if}}
27
- "@grafana/tsconfig": "^1.2.0-rc1",
28
- "@grafana/plugin-meta-extractor": "^0.0.2",{{#if usePlaywright}}
27
+ "@grafana/tsconfig": "^1.2.0-rc1",{{#if usePlaywright}}
29
28
  "@playwright/test": "^1.41.2",{{/if}}
30
29
  "@swc/core": "^1.3.90",
31
30
  "@swc/helpers": "^0.5.0",