@grafana/create-plugin 2.1.0-canary.458.359f45c.0 → 2.1.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,25 @@
|
|
|
1
|
+
# v2.1.0 (Fri Oct 13 2023)
|
|
2
|
+
|
|
3
|
+
:tada: This release contains work from a new contributor! :tada:
|
|
4
|
+
|
|
5
|
+
Thank you, Zoltán Bedi ([@zoltanbedi](https://github.com/zoltanbedi)), for all your work!
|
|
6
|
+
|
|
7
|
+
#### 🚀 Enhancement
|
|
8
|
+
|
|
9
|
+
- Update only dev dependencies when the update command runs [#458](https://github.com/grafana/plugin-tools/pull/458) ([@academo](https://github.com/academo))
|
|
10
|
+
|
|
11
|
+
#### 🐛 Bug Fix
|
|
12
|
+
|
|
13
|
+
- Revert prettier formatting [#450](https://github.com/grafana/plugin-tools/pull/450) ([@zoltanbedi](https://github.com/zoltanbedi))
|
|
14
|
+
- Chore: Run prettier [#449](https://github.com/grafana/plugin-tools/pull/449) ([@zoltanbedi](https://github.com/zoltanbedi))
|
|
15
|
+
|
|
16
|
+
#### Authors: 2
|
|
17
|
+
|
|
18
|
+
- Esteban Beltran ([@academo](https://github.com/academo))
|
|
19
|
+
- Zoltán Bedi ([@zoltanbedi](https://github.com/zoltanbedi))
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
1
23
|
# v2.0.2 (Wed Oct 04 2023)
|
|
2
24
|
|
|
3
25
|
:tada: This release contains work from a new contributor! :tada:
|
|
@@ -141,7 +141,7 @@ describe('Utils / NPM', function () {
|
|
|
141
141
|
});
|
|
142
142
|
});
|
|
143
143
|
describe('hasNpmDependenciesToUpdate()', function () {
|
|
144
|
-
test('It should return false when there are
|
|
144
|
+
test('It should return false when there are no npm dependencies to update', function () {
|
|
145
145
|
var packageJson = {
|
|
146
146
|
dependencies: {
|
|
147
147
|
'@grafana/ui': '10.0.0',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "2.1.0
|
|
3
|
+
"version": "2.1.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": ">=18"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "9e86c64fe50f818564f483e2223153e9f2b6928d"
|
|
70
70
|
}
|
|
@@ -206,7 +206,7 @@ describe('Utils / NPM', () => {
|
|
|
206
206
|
});
|
|
207
207
|
|
|
208
208
|
describe('hasNpmDependenciesToUpdate()', () => {
|
|
209
|
-
test('It should return false when there are
|
|
209
|
+
test('It should return false when there are no npm dependencies to update', () => {
|
|
210
210
|
const packageJson = {
|
|
211
211
|
dependencies: {
|
|
212
212
|
'@grafana/ui': '10.0.0',
|