@grafana/plugin-meta-extractor 0.0.4 → 0.0.5
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 +12 -0
- package/package.json +3 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v0.0.5 (Fri Aug 09 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Chore: Bump micromatch [#1040](https://github.com/grafana/plugin-tools/pull/1040) ([@jackw](https://github.com/jackw))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v0.0.4 (Tue Jul 09 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/plugin-meta-extractor",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "Extract meta information from a Grafana plugin source code.",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"bin": "./dist/bin/run.js",
|
|
@@ -37,11 +37,8 @@
|
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@grafana/data": "^10.4.1",
|
|
40
|
-
"@types/jest": "^29.5.12",
|
|
41
40
|
"@types/node": "^20.11.25",
|
|
42
|
-
"
|
|
43
|
-
"react": "^18.2.0",
|
|
44
|
-
"ts-jest": "^29.1.2"
|
|
41
|
+
"react": "^18.2.0"
|
|
45
42
|
},
|
|
46
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "083e48deb1b6be862f40d87f6d5ce35071c63a84"
|
|
47
44
|
}
|