mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -06:00
d8ec95e9b1
* build test apps with webpack * add extensions test app * update e2e tests * remove non-build test apps using amd * use @grafana/plugin-configs rather than create-plugin config * Update e2e/plugin-e2e/plugin-e2e-api-tests/as-admin-user/extensions/usePluginComponents.spec.ts Co-authored-by: Jack Westbrook <jack.westbrook@gmail.com> * Update package.json Co-authored-by: Jack Westbrook <jack.westbrook@gmail.com> * use run dir variable instead of hardcoded path * add dummy licence file * add separate step for building test plugins * support nested plugins * remove react-router-dom from the externals array * remove add_mode dev * lint starlark * pass license path as env variable * fix the path * chore(e2e-plugins): clean up dependencies to match core versions * refactor(e2e-plugins): prefer extending webpack plugins-config * docs(e2e-plugins): add basic info to extensions test plugin readme * update readme * change dir name from custom plugins to test plugins * change root readme * update lockfile --------- Co-authored-by: Jack Westbrook <jack.westbrook@gmail.com>
60 lines
1.4 KiB
JSON
60 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/grafana/grafana/main/docs/sources/developers/plugins/plugin.schema.json",
|
|
"type": "app",
|
|
"name": "Extensions test app",
|
|
"preload": true,
|
|
"id": "grafana-extensionstest-app",
|
|
"info": {
|
|
"keywords": ["app"],
|
|
"description": "",
|
|
"author": {
|
|
"name": "Grafana"
|
|
},
|
|
"logos": {
|
|
"small": "img/logo.svg",
|
|
"large": "img/logo.svg"
|
|
},
|
|
"screenshots": [],
|
|
"version": "%VERSION%",
|
|
"updated": "%TODAY%"
|
|
},
|
|
"includes": [
|
|
{
|
|
"type": "page",
|
|
"name": "Legacy APIs",
|
|
"path": "/a/grafana-extensionstest-app/legacy-apis",
|
|
"role": "Admin",
|
|
"addToNav": true,
|
|
"defaultNav": false
|
|
},
|
|
{
|
|
"type": "page",
|
|
"name": "Exposed components",
|
|
"path": "/a/grafana-extensionstest-app/exposed-components",
|
|
"role": "Admin",
|
|
"addToNav": true,
|
|
"defaultNav": false
|
|
},
|
|
{
|
|
"type": "page",
|
|
"name": "Added components",
|
|
"path": "/a/grafana-extensionstest-app/added-components",
|
|
"role": "Admin",
|
|
"addToNav": true,
|
|
"defaultNav": false
|
|
},
|
|
{
|
|
"type": "page",
|
|
"icon": "cog",
|
|
"name": "Configuration",
|
|
"path": "/plugins/grafana-extensionstest-app",
|
|
"role": "Admin",
|
|
"addToNav": true
|
|
}
|
|
],
|
|
"dependencies": {
|
|
"grafanaDependency": ">=10.4.0",
|
|
"plugins": []
|
|
}
|
|
}
|