mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
c16890c22d
* Use fork-ts-checker for eslint check * Fix lint issue * Add packages to lint * Add comments to webpack configs
15 lines
369 B
JavaScript
15 lines
369 B
JavaScript
'use strict';
|
|
|
|
const pkg = require('../../package.json');
|
|
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');
|
|
|
|
// add jquery first
|
|
dependencies.unshift('jquery');
|
|
|
|
module.exports = dependencies;
|