@grafana/create-plugin 0.8.4 → 0.9.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
+ # v0.9.0 (Thu Jan 26 2023)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - Create Plugin: Update jest config to support Grafana 9.4 packages [#188](https://github.com/grafana/plugin-tools/pull/188) ([@jackw](https://github.com/jackw))
6
+
7
+ #### Authors: 1
8
+
9
+ - Jack Westbrook ([@jackw](https://github.com/jackw))
10
+
11
+ ---
12
+
1
13
  # v0.8.4 (Fri Jan 13 2023)
2
14
 
3
15
  #### 🐛 Bug Fix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "0.8.4",
3
+ "version": "0.9.0",
4
4
  "main": "index.js",
5
5
  "repository": {
6
6
  "directory": "packages/create-plugin",
@@ -60,5 +60,5 @@
60
60
  "engines": {
61
61
  "node": ">=16"
62
62
  },
63
- "gitHead": "648d226cd34cecfaf840b26afe86166d29b9bf57"
63
+ "gitHead": "f27f1333941079ea7e39799f8e6c8ca3e0c6cea3"
64
64
  }
@@ -11,7 +11,16 @@
11
11
  const nodeModulesToTransform = (moduleNames) => `node_modules\/(?!(${moduleNames.join('|')})\/)`;
12
12
 
13
13
  // Array of known nested grafana package dependencies that only bundle an ESM version
14
- const grafanaESModules = ['ol', 'react-colorful', 'uuid'];
14
+ const grafanaESModules = [
15
+ 'd3',
16
+ 'd3-color',
17
+ 'd3-force',
18
+ 'd3-interpolate',
19
+ 'd3-scale-chromatic',
20
+ 'ol',
21
+ 'react-colorful',
22
+ 'uuid',
23
+ ];
15
24
 
16
25
  module.exports = {
17
26
  nodeModulesToTransform,