@grafana/create-plugin 1.3.2-canary.232.f3fd3ea.0 → 1.3.2

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,22 @@
1
+ # v1.3.2 (Thu May 18 2023)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Chore: Update dev-dependencies [#232](https://github.com/grafana/plugin-tools/pull/232) ([@leventebalogh](https://github.com/leventebalogh) [@jackw](https://github.com/jackw))
6
+ - Fix fonts not loaded correctly on generated bundles [#251](https://github.com/grafana/plugin-tools/pull/251) ([@academo](https://github.com/academo))
7
+
8
+ #### 📝 Documentation
9
+
10
+ - Create Plugin: Update readme for supported package managers [#244](https://github.com/grafana/plugin-tools/pull/244) ([@jackw](https://github.com/jackw))
11
+
12
+ #### Authors: 3
13
+
14
+ - Esteban Beltran ([@academo](https://github.com/academo))
15
+ - Jack Westbrook ([@jackw](https://github.com/jackw))
16
+ - Levente Balogh ([@leventebalogh](https://github.com/leventebalogh))
17
+
18
+ ---
19
+
1
20
  # v1.3.1 (Mon May 15 2023)
2
21
 
3
22
  #### 🐛 Bug Fix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "1.3.2-canary.232.f3fd3ea.0",
3
+ "version": "1.3.2",
4
4
  "main": "index.js",
5
5
  "repository": {
6
6
  "directory": "packages/create-plugin",
@@ -64,5 +64,5 @@
64
64
  "engines": {
65
65
  "node": ">=16"
66
66
  },
67
- "gitHead": "f3fd3ead8f83d05969a4597a01a84851389c7328"
67
+ "gitHead": "27888d28640d45e2bfda1c8acc685a202ab0999a"
68
68
  }
@@ -117,7 +117,7 @@ const config = async (env): Promise<Configuration> => ({
117
117
  type: 'asset/resource',
118
118
  generator: {
119
119
  // Keep publicPath relative for host.com/grafana/ deployments
120
- publicPath: `public/plugins/${pluginJson.id}/fonts`,
120
+ publicPath: `public/plugins/${pluginJson.id}/fonts/`,
121
121
  outputPath: 'fonts/',
122
122
  filename: Boolean(env.production) ? '[hash][ext]' : '[name][ext]',
123
123
  },