From d3e9866d4129608c1cc26292b45414556da6add2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 15 Sep 2023 09:18:04 +0100 Subject: [PATCH] fix(deps): update dependency ansi_up to v6 (#2431) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: qwerty287 Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com> --- web/package.json | 2 +- web/pnpm-lock.yaml | 8 ++++---- web/src/components/repo/pipeline/PipelineLog.vue | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/web/package.json b/web/package.json index a07331135..eba46d53e 100644 --- a/web/package.json +++ b/web/package.json @@ -21,7 +21,7 @@ "@kyvg/vue3-notification": "^3.0.0", "@vueuse/components": "^10.4.0", "@vueuse/core": "^10.0.0", - "ansi_up": "^5.2.1", + "ansi_up": "^6.0.0", "dayjs": "^1.11.9", "fuse.js": "^6.6.2", "humanize-duration": "^3.28.0", diff --git a/web/pnpm-lock.yaml b/web/pnpm-lock.yaml index fc064eaa0..1ed907bf2 100644 --- a/web/pnpm-lock.yaml +++ b/web/pnpm-lock.yaml @@ -21,8 +21,8 @@ dependencies: specifier: ^10.0.0 version: 10.4.0(vue@3.3.4) ansi_up: - specifier: ^5.2.1 - version: 5.2.1 + specifier: ^6.0.0 + version: 6.0.2 dayjs: specifier: ^1.11.9 version: 1.11.9 @@ -1265,8 +1265,8 @@ packages: color-convert: 2.0.1 dev: true - /ansi_up@5.2.1: - resolution: {integrity: sha512-5bz5T/7FRmlxA37zDXhG6cAwlcZtfnmNLDJra66EEIT3kYlw5aPJdbkJEhm59D6kA4Wi5ict6u6IDYHJaQlH+g==} + /ansi_up@6.0.2: + resolution: {integrity: sha512-3G3vKvl1ilEp7J1u6BmULpMA0xVoW/f4Ekqhl8RTrJrhEBkonKn5k3bUc5Xt+qDayA6iDX0jyUh3AbZjB/l0tw==} dev: false /anymatch@3.1.3: diff --git a/web/src/components/repo/pipeline/PipelineLog.vue b/web/src/components/repo/pipeline/PipelineLog.vue index 9d33c1282..9b1b6c25f 100644 --- a/web/src/components/repo/pipeline/PipelineLog.vue +++ b/web/src/components/repo/pipeline/PipelineLog.vue @@ -100,7 +100,7 @@ import '~/style/console.css'; import { useStorage } from '@vueuse/core'; -import AnsiUp from 'ansi_up'; +import { AnsiUp } from 'ansi_up'; import { debounce } from 'lodash'; import { computed, inject, nextTick, onMounted, Ref, ref, toRef, watch } from 'vue'; import { useI18n } from 'vue-i18n';