@grafana/plugin-meta-extractor 0.0.2 → 0.0.3

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.0.3 (Mon May 27 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Plugin meta extractor: add a warning to the README [#928](https://github.com/grafana/plugin-tools/pull/928) ([@leventebalogh](https://github.com/leventebalogh))
6
+
7
+ #### Authors: 1
8
+
9
+ - Levente Balogh ([@leventebalogh](https://github.com/leventebalogh))
10
+
11
+ ---
12
+
1
13
  # v0.0.2 (Wed May 08 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
package/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Grafana / Plugin Meta Extractor
2
2
 
3
+ > [!WARNING]
4
+ > This is an experimental project and may change at any time. It is not yet used in any of our tools and does not reliably work with most of our app plugin implementation patterns.
5
+
3
6
  `@grafana/plugin-meta-extractor` is a cli tool that can be used to extract meta-information from the source code of a Grafana plugin. It is used to generate plugin metadata without the need for manual intervention, which is then used by the Grafana application to understand features or functionalities a plugin supports or uses.
4
7
 
5
8
  ## Install
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/plugin-meta-extractor",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
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",
@@ -43,5 +43,5 @@
43
43
  "react": "^18.2.0",
44
44
  "ts-jest": "^29.1.2"
45
45
  },
46
- "gitHead": "648d1db7150d535f246ef972d010206d35b45cc1"
46
+ "gitHead": "6538667dc7c24ed258e2a1712238b10b168c7999"
47
47
  }