@grafana/create-plugin 6.5.0-canary.2320.20262762522.0 → 6.5.0-canary.2320.20267441803.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/package.json +2 -2
- package/src/codemods/AGENTS.md +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/create-plugin",
|
|
3
|
-
"version": "6.5.0-canary.2320.
|
|
3
|
+
"version": "6.5.0-canary.2320.20267441803.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"directory": "packages/create-plugin",
|
|
6
6
|
"url": "https://github.com/grafana/plugin-tools"
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"engines": {
|
|
57
57
|
"node": ">=20"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "4f8f948e49999c33b0539f1bba311552d27670eb"
|
|
60
60
|
}
|
package/src/codemods/AGENTS.md
CHANGED
|
@@ -38,7 +38,7 @@ Additions are optional features that developers choose to add via `create-plugin
|
|
|
38
38
|
### Addition Behavior
|
|
39
39
|
|
|
40
40
|
- Additions add new features or capabilities to a plugin (e.g., i18n support, testing frameworks, etc.)
|
|
41
|
-
-
|
|
41
|
+
- it should be safe to run multiple times
|
|
42
42
|
- Always use defensive programming: check if features already exist before adding them
|
|
43
43
|
- Use `additionsDebug()` for logging to help with troubleshooting
|
|
44
44
|
- If the addition accepts user input, export a `schema` object using `valibot` for input validation
|