/
githubmirror
/
grafana
Обзор
Документация
Войти
/
githubmirror
/
grafana
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
scripts/webpack/dependencies.js
15 строк
369 B
Josh Hunt
Chore: ESlint import order (#44959)
22 апр 2022, 16:33
Не верифицирован
22 апр 2022, 16:33
3c6e0e8
Код
Авторство
О чём код?
'use strict'; const { pull } = require('lodash'); const pkg = require('../../package.json'); 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;