mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 05:32:15 +08:00

* feat(plugins): only load shared plugin dependencies when needed * feat(plugins): add react-redux and fix up comments * feat(plugins): attempt to load async deps in fe sandbox * feat(frontend): defer script execution to prevent systemjs from loading app.js
6 lines
227 B
TypeScript
6 lines
227 B
TypeScript
/**
|
|
* Map with all dependencies that are exposed to plugins sandbox
|
|
* e.g.: @grafana/ui, @grafana/data, etc...
|
|
*/
|
|
export const sandboxPluginDependencies = new Map<string, System.Module | (() => Promise<System.Module>)>([]);
|