Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 59 additions & 17 deletions spring-boot-admin-server-ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion spring-boot-admin-server-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"@testing-library/jest-dom": "6.9.1",
"@testing-library/user-event": "14.6.1",
"@testing-library/vue": "8.1.0",
"@trivago/prettier-plugin-sort-imports": "^5.0.0",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/d3": "^7.4.3",
"@types/lodash-es": "^4.17.7",
"@typescript-eslint/eslint-plugin": "^8.0.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import _ from 'lodash';
import { isEqual } from 'lodash-es';
import qs from 'qs';
import { UnwrapNestedRefs, reactive, watch } from 'vue';
import { LocationQuery, useRoute, useRouter } from 'vue-router';
Expand Down Expand Up @@ -35,7 +35,7 @@ export function useRouterState<T extends object>(
};
const routerQueryKeys = Object.keys(route.query);
const newRouterQueryKeys = Object.keys({ ...route.query, ...newValue });
if (_.isEqual(routerQueryKeys, newRouterQueryKeys)) {
if (isEqual(routerQueryKeys, newRouterQueryKeys)) {
router.replace(to);
} else {
router.push(to);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import userEvent from '@testing-library/user-event';
import { screen } from '@testing-library/vue';
import _ from 'lodash';
import { cloneDeep } from 'lodash-es';
import { beforeEach, describe, expect, it, vi } from 'vitest';

import { applications } from '../../../mocks/applications/data';
Expand Down Expand Up @@ -39,7 +39,7 @@ describe('Refresh', () => {
}

function createApplication() {
const application = new Application(_.cloneDeep(applications[1]));
const application = new Application(cloneDeep(applications[1]));
application.instances.push(createInstance());
application.refreshContext = refreshApplicationContext;
return application;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</template>

<script lang="ts">
import { debounce } from 'lodash';
import { debounce } from 'lodash-es';
import { computed, onMounted, ref, watch } from 'vue';

import SbaPanel from '@/components/sba-panel.vue';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</template>

<script>
import orderBy from 'lodash/orderBy';
import { orderBy } from 'lodash-es';

import { StartupActuatorEventTree } from '@/services/startup-activator-tree';
import TreeItem from '@/views/instances/startup/tree-item';
Expand Down