@grafana/plugin-types-bundler 0.0.1-canary.1092.a97e49a.0 → 0.0.2-canary.1162.c54d7e1.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 +10 -0
- package/README.md +2 -0
- package/package.json +4 -3
package/CHANGELOG.md
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
# v0.0.1 (Wed Sep 25 2024)
|
2
|
+
|
3
|
+
#### 🐛 Bug Fix
|
4
|
+
|
5
|
+
- Types Bundler: Add package [#1092](https://github.com/grafana/plugin-tools/pull/1092) ([@jackw](https://github.com/jackw) [@leventebalogh](https://github.com/leventebalogh))
|
6
|
+
|
7
|
+
#### Authors: 2
|
8
|
+
|
9
|
+
- Jack Westbrook ([@jackw](https://github.com/jackw))
|
10
|
+
- Levente Balogh ([@leventebalogh](https://github.com/leventebalogh))
|
package/README.md
CHANGED
@@ -5,6 +5,8 @@
|
|
5
5
|
|
6
6
|
`@grafana/plugin-types-bundler` is a cli tool that can be used to bundle types from the source code of a Grafana plugin. This single file will wrap all the types up into a single d.ts file which can then be shared with other Grafana plugins.
|
7
7
|
|
8
|
+
It is recommended that you create a separate `.ts` file that exports only the types you want to expose rather than run this tool against the plugins `module.{ts,tsx}` file.
|
9
|
+
|
8
10
|
## Install
|
9
11
|
|
10
12
|
```
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@grafana/plugin-types-bundler",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.2-canary.1162.c54d7e1.0",
|
4
4
|
"description": "Bundle grafana plugin typescript types for sharing with other plugins",
|
5
5
|
"bin": "./dist/bin/run.js",
|
6
6
|
"type": "module",
|
@@ -20,7 +20,8 @@
|
|
20
20
|
},
|
21
21
|
"publishConfig": {
|
22
22
|
"registry": "https://registry.npmjs.org/",
|
23
|
-
"access": "public"
|
23
|
+
"access": "public",
|
24
|
+
"provenance": true
|
24
25
|
},
|
25
26
|
"repository": {
|
26
27
|
"directory": "packages/plugin-types-bundler",
|
@@ -48,5 +49,5 @@
|
|
48
49
|
"jackw-dts-bundle-gen-test": "^9.5.1",
|
49
50
|
"minimist": "^1.2.8"
|
50
51
|
},
|
51
|
-
"gitHead": "
|
52
|
+
"gitHead": "c54d7e126ed18fae732238d624be590298414276"
|
52
53
|
}
|