@grafana/create-plugin 1.7.0-canary.286.6a4650a.0 → 1.7.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,20 @@
|
|
|
1
|
+
# v1.7.0 (Wed Jul 05 2023)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Making grafana-image parameter flexible [#286](https://github.com/grafana/plugin-tools/pull/286) ([@tolzhabayev](https://github.com/tolzhabayev))
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fix
|
|
8
|
+
|
|
9
|
+
- Create Plugin: Add rxjs and schema to known Jest ES modules [#289](https://github.com/grafana/plugin-tools/pull/289) ([@jackw](https://github.com/jackw))
|
|
10
|
+
|
|
11
|
+
#### Authors: 2
|
|
12
|
+
|
|
13
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
|
14
|
+
- Timur Olzhabayev ([@tolzhabayev](https://github.com/tolzhabayev))
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
1
18
|
# v1.6.3 (Mon Jun 12 2023)
|
|
2
19
|
|
|
3
20
|
#### 🐛 Bug Fix
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "1.7.0
|
|
3
|
+
"version": "1.7.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": "ec3651f12b05d7e8e4da515d272bfc1c568d5f21"
|
|
70
70
|
}
|
|
@@ -13,6 +13,7 @@ const nodeModulesToTransform = (moduleNames) => `node_modules\/(?!(${moduleNames
|
|
|
13
13
|
// Array of known nested grafana package dependencies that only bundle an ESM version
|
|
14
14
|
const grafanaESModules = [
|
|
15
15
|
'.pnpm', // Support using pnpm symlinked packages
|
|
16
|
+
'@grafana/schema',
|
|
16
17
|
'd3',
|
|
17
18
|
'd3-color',
|
|
18
19
|
'd3-force',
|
|
@@ -20,10 +21,11 @@ const grafanaESModules = [
|
|
|
20
21
|
'd3-scale-chromatic',
|
|
21
22
|
'ol',
|
|
22
23
|
'react-colorful',
|
|
24
|
+
'rxjs',
|
|
23
25
|
'uuid',
|
|
24
26
|
];
|
|
25
27
|
|
|
26
28
|
module.exports = {
|
|
27
29
|
nodeModulesToTransform,
|
|
28
|
-
grafanaESModules
|
|
29
|
-
}
|
|
30
|
+
grafanaESModules,
|
|
31
|
+
};
|