mirror of
https://github.com/grafana/grafana.git
synced 2025-09-19 18:22:58 +08:00
Performance/Webpack: Introduces more aggressive code-splitting and other perf improvements (#18544)
* Performance/Webpack: Introduces more aggressive code-splitting and other perf improvements - Introduces dynamic imports for built-in plugins - Uses dynamic imports for various packages (rst2html, brace) - Introduces route-based dynamic imports - Splits angular and moment into separate bundles
This commit is contained in:
@ -1,12 +1,12 @@
|
||||
'use strict';
|
||||
|
||||
const pkg = require('../../package.json');
|
||||
const _ = require('lodash');
|
||||
const pull = require('lodash/pull');
|
||||
|
||||
let dependencies = Object.keys(pkg.dependencies);
|
||||
// remove jquery so we can add it first
|
||||
// remove rxjs so we can only depend on parts of it in code
|
||||
_.pull(dependencies, 'jquery', 'rxjs')
|
||||
pull(dependencies, 'jquery', 'rxjs')
|
||||
|
||||
// add jquery first
|
||||
dependencies.unshift('jquery');
|
||||
|
Reference in New Issue
Block a user