Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump webpack-version-file-plugin & webpack-cli to latest version #1619

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
36b3f8f
Bump webpack-cli to latest version - 6.0.1
Adamik10 Jan 3, 2025
a7168bc
Bump webpack-version-file-plugin to latest - 0.5.0
Adamik10 Jan 3, 2025
ef1a708
Revert changes in .version.json.ejs
Adamik10 Jan 3, 2025
00cd6db
Bump concurrently from 9.1.0 to 9.1.2
dependabot[bot] Jan 6, 2025
3bf6a4d
Bump happy-dom from 14.12.3 to 16.3.0
dependabot[bot] Jan 6, 2025
6a20878
Bump sass from 1.83.0 to 1.83.1
dependabot[bot] Jan 6, 2025
ba03298
Bump @chromatic-com/storybook from 3.2.2 to 3.2.3
dependabot[bot] Dec 23, 2024
7a4d2b4
Bump webpack-cli from 5.1.4 to 6.0.1
Adamik10 Jan 6, 2025
33c1448
Bump kind-of from 6.0.2 to 6.0.3
dependabot[bot] Jan 2, 2025
5f6ec3c
Bump `types/lodash` from "^4.17.5" to "^4.17.13"
kasperbirch1 Jan 3, 2025
913dbb1
Bump @storybook/addon-webpack5-compiler-babel in the storybook group
dependabot[bot] Jan 6, 2025
ee53592
Bump caniuse-lite from 1.0.30001688 to 1.0.30001690
dependabot[bot] Jan 6, 2025
d919ef9
Bump eslint-plugin-react from 7.37.2 to 7.37.3
dependabot[bot] Jan 6, 2025
0637e0b
Bump @tsconfig/create-react-app to version 2.0.5
Adamik10 Jan 2, 2025
0f23f5b
Bump Cypress & add TypeScript types for Cypress
Adamik10 Jan 6, 2025
4cc9b50
Update tsconfig.json to include Cypress and TypeScript files in the s…
Adamik10 Jan 2, 2025
d5b0f16
Refactor import path for CyHttpMessages in graphql-test-utils
Adamik10 Jan 2, 2025
21f8548
Disable eslint rule for explicit any in net-stubbing type definitions…
Adamik10 Jan 2, 2025
b702b00
Bump TypeScript to latest version - 5.7.2
Adamik10 Jan 2, 2025
dc43efa
Update ESLint configuration and tsconfig to include JavaScript files …
Adamik10 Jan 2, 2025
0514522
Exclude test files from TypeScript compilation in tsconfig.json
Adamik10 Jan 2, 2025
fc65905
Add test file patterns to .eslintignore to exclude from linting
Adamik10 Jan 2, 2025
309baa3
Try to re-add the babel-plugin-lodash plugin and see if things work now
Adamik10 Jan 6, 2025
d346328
Merge branch 'develop' into DDFBRA-306-opgrader-webpack-version-file-…
Adamik10 Jan 6, 2025
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
4 changes: 1 addition & 3 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,7 @@
}
]
],
"plugins": [
"istanbul"
]
"plugins": ["istanbul"]
}
}
}
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.version.json.ejs
Adamik10 marked this conversation as resolved.
Show resolved Hide resolved
6 changes: 3 additions & 3 deletions .version.json.ejs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "<%= name %>",
"buildDate": "<%= currentTime.toISOString() %>",
"version": "<%= version %>"
"name": "<%= name %>",
"buildDate": "<%= currentTime.toISOString() %>",
"version": "<%= version %>"
}
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
"vitest": "^2.1.8",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-version-file-plugin": "^0.4.0"
"webpack-version-file-plugin": "0.5.0"
},
"//dependencies": {
"@danskernesdigitalebibliotek/dpl-design-system": "Is being used for being able to see the dpl-design-system styling in Storybook and potentially use icons",
Expand Down Expand Up @@ -178,5 +178,8 @@
},
"peerDependencies": {
"postcss": "^8.4.49"
},
"resolutions": {
"@babel/runtime": "^7.26.0"
Adamik10 marked this conversation as resolved.
Show resolved Hide resolved
}
}
21 changes: 11 additions & 10 deletions src/apps/dashboard/util/helpers.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
import dayjs from "dayjs";
import { dateFormatDayjs } from "../../../core/configuration/date-format.json";
import {
faustIdentifierLength,
digitalMaterialIdentifierLength
} from "../../../core/configuration/identifier-lengths.json";
import dates from "../../../core/configuration/date-format.json";
import identifierLengths from "../../../core/configuration/identifier-lengths.json";

export const yesterday = dayjs().subtract(1, "day").format(dateFormatDayjs);
export const soon = dayjs().add(7, "days").format(dateFormatDayjs);
export const longer = dayjs().add(1, "year").format(dateFormatDayjs);
export const yesterday = dayjs()
.subtract(1, "day")
.format(dates.dateFormatDayjs);
export const soon = dayjs().add(7, "days").format(dates.dateFormatDayjs);
export const longer = dayjs().add(1, "year").format(dates.dateFormatDayjs);

export const getReservationType = (reservationId: string) => {
if (reservationId.length === faustIdentifierLength) {
if (reservationId.length === identifierLengths.faustIdentifierLength) {
return "physical";
}
if (reservationId.length === digitalMaterialIdentifierLength) {
if (
reservationId.length === identifierLengths.digitalMaterialIdentifierLength
) {
return "digital";
}
return "invalid input";
Expand Down
6 changes: 4 additions & 2 deletions src/apps/fee-list/stackable-fees/fee-details-content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as React from "react";
import { FC } from "react";
import { FeeV2 } from "../../../core/fbs/model";
import { useText } from "../../../core/utils/text";
import { dateFormatCustom } from "../../../core/configuration/date-format.json";
import dateFormat from "../../../core/configuration/date-format.json";
import StackableFeesList from "./stackable-fees-list";
import GroupModalContent from "../../../components/GroupModal/GroupModalContent";
import { formatCurrency } from "../../../core/utils/helpers/currency";
Expand All @@ -20,7 +20,9 @@ const FeeDetailsContent: FC<FeeDetailsContentProps> = ({ feeDetailsData }) => {
materials = [],
reasonMessage
} = feeDetailsData;
const creationDateFormatted = dayjs(creationDate).format(dateFormatCustom);
const creationDateFormatted = dayjs(creationDate).format(
dateFormat.dateFormatCustom
);

return (
<div className="modal-loan__container">
Expand Down
4 changes: 2 additions & 2 deletions src/apps/fee-list/stackable-fees/fee-status.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import dayjs from "dayjs";
import React, { FC } from "react";
import { dateFormatDefault } from "../../../core/configuration/date-format.json";
import dateFormat from "../../../core/configuration/date-format.json";
import { useText } from "../../../core/utils/text";

interface FeeStatusProps {
Expand All @@ -10,7 +10,7 @@ interface FeeStatusProps {

const FeeStatus: FC<FeeStatusProps> = ({ dueDate, reasonMessage }) => {
const t = useText();
const dueDateFormatted = dayjs(dueDate).format(dateFormatDefault);
const dueDateFormatted = dayjs(dueDate).format(dateFormat.dateFormatDefault);
return (
<div>
<div className="list-reservation__deadline">
Expand Down
4 changes: 2 additions & 2 deletions src/core/utils/useReservations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ import {
} from "./helpers/list-mapper";
import { getReadyForPickup } from "../../apps/reservation-list/utils/helpers";
import { ReservationType } from "./types/reservation-type";
import { dashboardReservedApiValueText } from "../configuration/api-strings.json";
import apiStrings from "../configuration/api-strings.json";
import useGetReservationGroups from "./useGetReservationGroups";

const getQueuedReservations = (list: ReservationType[]) => {
return [...list].filter(
({ state }) => state === dashboardReservedApiValueText
({ state }) => state === apiStrings.dashboardReservedApiValueText
Adamik10 marked this conversation as resolved.
Show resolved Hide resolved
);
};

Expand Down
2 changes: 2 additions & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,14 @@ module.exports = (_env, argv) => {
];

if (process.env.VERSION_FILE_NAME && process.env.VERSION_FILE_VERSION) {
const currentTime = new Date();
plugins.push(
new VersionFile({
template: path.join(__dirname, ".version.json.ejs"),
outputFile: path.join(__dirname, "dist/version.json"),
name: process.env.VERSION_FILE_NAME,
version: process.env.VERSION_FILE_VERSION,
currentTime, // Required
Adamik10 marked this conversation as resolved.
Show resolved Hide resolved
// We intentionally do not use any information from package.json but
// VersionFile require that we provide it.
packageFile: path.join(__dirname, "package.json")
Expand Down
128 changes: 53 additions & 75 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -245,12 +245,13 @@
"@babel/traverse" "^7.25.9"
"@babel/types" "^7.25.9"

"@babel/helper-module-imports@^7.0.0-beta.49":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e"
integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==
"@babel/helper-module-imports@^7.0.0-beta.49", "@babel/helper-module-imports@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz#e7f8d20602ebdbf9ebbea0a0751fb0f2a4141715"
integrity sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==
dependencies:
"@babel/types" "^7.18.6"
"@babel/traverse" "^7.25.9"
"@babel/types" "^7.25.9"

"@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.7":
version "7.16.7"
Expand All @@ -259,14 +260,6 @@
dependencies:
"@babel/types" "^7.16.7"

"@babel/helper-module-imports@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz#e7f8d20602ebdbf9ebbea0a0751fb0f2a4141715"
integrity sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==
dependencies:
"@babel/traverse" "^7.25.9"
"@babel/types" "^7.25.9"

"@babel/helper-module-transforms@^7.25.9", "@babel/helper-module-transforms@^7.26.0":
version "7.26.0"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz#8ce54ec9d592695e58d84cd884b7b5c6a2fdeeae"
Expand Down Expand Up @@ -1087,27 +1080,13 @@
resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310"
integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==

"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.16.0", "@babel/runtime@^7.17.8", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.2", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2":
version "7.23.5"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.5.tgz#11edb98f8aeec529b82b211028177679144242db"
integrity sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==
dependencies:
regenerator-runtime "^0.14.0"

"@babel/runtime@^7.12.5":
"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.16.0", "@babel/runtime@^7.17.8", "@babel/runtime@^7.24.5", "@babel/runtime@^7.26.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.2", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2":
version "7.26.0"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.26.0.tgz#8600c2f595f277c60815256418b85356a65173c1"
integrity sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==
dependencies:
regenerator-runtime "^0.14.0"

"@babel/runtime@^7.24.5":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.25.9.tgz#65884fd6dc255a775402cc1d9811082918f4bf00"
integrity sha512-4zpTHZ9Cm6L9L+uIqghQX8ZXg8HKFcjYO3qHoO8zTmRm6HQUJ8SSJ+KRvbMBZn0EGVlT4DRYeQ/6hjlyXBh+Kg==
dependencies:
regenerator-runtime "^0.14.0"

"@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.9.tgz#ecb62d81a8a6f5dc5fe8abfc3901fc52ddf15016"
Expand All @@ -1130,10 +1109,10 @@
debug "^4.3.1"
globals "^11.1.0"

"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.16.7", "@babel/types@^7.16.8", "@babel/types@^7.18.13", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.20.7", "@babel/types@^7.22.5", "@babel/types@^7.25.4", "@babel/types@^7.25.9", "@babel/types@^7.26.0", "@babel/types@^7.3.0", "@babel/types@^7.4.4":
version "7.26.0"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.0.tgz#deabd08d6b753bc8e0f198f8709fb575e31774ff"
integrity sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==
"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.16.7", "@babel/types@^7.16.8", "@babel/types@^7.18.13", "@babel/types@^7.18.9", "@babel/types@^7.20.7", "@babel/types@^7.22.5", "@babel/types@^7.25.4", "@babel/types@^7.25.9", "@babel/types@^7.26.0", "@babel/types@^7.3.0", "@babel/types@^7.4.4":
version "7.26.3"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.3.tgz#37e79830f04c2b5687acc77db97fbc75fb81f3c0"
integrity sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==
dependencies:
"@babel/helper-string-parser" "^7.25.9"
"@babel/helper-validator-identifier" "^7.25.9"
Expand Down Expand Up @@ -4386,6 +4365,11 @@ async@^3.2.0:
resolved "https://registry.npmjs.org/async/-/async-3.2.3.tgz"
integrity sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==

async@^3.2.3:
version "3.2.6"
resolved "https://registry.yarnpkg.com/async/-/async-3.2.6.tgz#1b0728e14929d51b85b449b7f06e27c1145e38ce"
integrity sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==

asynckit@^0.4.0:
version "0.4.0"
resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"
Expand Down Expand Up @@ -5106,7 +5090,7 @@ chai@^5.1.2:
loupe "^3.1.0"
pathval "^2.0.0"

[email protected], chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2:
[email protected], chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2:
version "4.1.2"
resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
Expand Down Expand Up @@ -6332,10 +6316,12 @@ ecc-jsbn@~0.1.1:
jsbn "~0.1.0"
safer-buffer "^2.1.0"

"ejs@~> 2.5.5":
version "2.5.9"
resolved "https://registry.npmjs.org/ejs/-/ejs-2.5.9.tgz"
integrity sha512-GJCAeDBKfREgkBtgrYSf9hQy9kTb3helv0zGdzqhM7iAkW8FA/ZF97VQDbwFiwIT8MQLLOe5VlPZOEvZAqtUAQ==
ejs@^3.1.8:
version "3.1.10"
resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz#69ab8358b14e896f80cc39e62087b88500c3ac3b"
integrity sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==
dependencies:
jake "^10.8.5"

electron-to-chromium@^1.5.41:
version "1.5.63"
Expand Down Expand Up @@ -7356,6 +7342,13 @@ file-loader@~6.2.0:
loader-utils "^2.0.0"
schema-utils "^3.0.0"

filelist@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5"
integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==
dependencies:
minimatch "^5.0.1"

filesize@^10.0.12:
version "10.1.6"
resolved "https://registry.yarnpkg.com/filesize/-/filesize-10.1.6.tgz#31194da825ac58689c0bce3948f33ce83aabd361"
Expand Down Expand Up @@ -9070,6 +9063,16 @@ jackspeak@^3.1.2:
optionalDependencies:
"@pkgjs/parseargs" "^0.11.0"

jake@^10.8.5:
version "10.9.2"
resolved "https://registry.yarnpkg.com/jake/-/jake-10.9.2.tgz#6ae487e6a69afec3a5e167628996b59f35ae2b7f"
integrity sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==
dependencies:
async "^3.2.3"
chalk "^4.0.2"
filelist "^1.0.4"
minimatch "^3.1.2"

jest-util@^29.7.0:
version "29.7.0"
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc"
Expand Down Expand Up @@ -12673,7 +12676,7 @@ string-env-interpolation@^1.0.1:
resolved "https://registry.yarnpkg.com/string-env-interpolation/-/string-env-interpolation-1.0.1.tgz#ad4397ae4ac53fe6c91d1402ad6f6a52862c7152"
integrity sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==

"string-width-cjs@npm:string-width@^4.2.0":
"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
Expand All @@ -12691,15 +12694,6 @@ string-width@^3.0.0, string-width@^3.1.0:
is-fullwidth-code-point "^2.0.0"
strip-ansi "^5.1.0"

string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
dependencies:
emoji-regex "^8.0.0"
is-fullwidth-code-point "^3.0.0"
strip-ansi "^6.0.1"

string-width@^5.0.1, string-width@^5.1.2:
version "5.1.2"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794"
Expand Down Expand Up @@ -12818,7 +12812,7 @@ string_decoder@~1.1.1:
dependencies:
safe-buffer "~5.1.0"

"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1:
version "6.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
Expand All @@ -12832,13 +12826,6 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
dependencies:
ansi-regex "^4.1.0"

strip-ansi@^6.0.0, strip-ansi@^6.0.1:
version "6.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
dependencies:
ansi-regex "^5.0.1"

strip-ansi@^7.0.1, strip-ansi@^7.1.0:
version "7.1.0"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45"
Expand Down Expand Up @@ -13625,10 +13612,10 @@ undeclared-identifiers@^1.1.2:
simple-concat "^1.0.0"
xtend "^4.0.1"

underscore@~1.6.0:
version "1.6.0"
resolved "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz"
integrity sha1-izixDKze9jM3uLJOT/htRa6lKag=
underscore@^1.13.6:
version "1.13.7"
resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.13.7.tgz#970e33963af9a7dda228f17ebe8399e5fbe63a10"
integrity sha512-GMXzWtsc57XAtguZgaQViUOzs0KTkk8ojr3/xAxXLITqf/3EMwxC0inyETfDFjH/Krbhuep0HNbbjI9i/q3F3g==

undici-types@~6.19.2, undici-types@~6.19.8:
version "6.19.8"
Expand Down Expand Up @@ -14046,14 +14033,14 @@ webpack-sources@^3.2.3:
resolved "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz"
integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==

webpack-version-file-plugin@^0.4.0:
version "0.4.0"
resolved "https://registry.npmjs.org/webpack-version-file-plugin/-/webpack-version-file-plugin-0.4.0.tgz"
integrity sha512-0+lgy3t04EAR3pIWDVKckytGlPKNmbGxPlB5DZ3vF3atC8DWtHwimUOuvdljEnGaTIpiTWitFJPaMLUvKCqO9g==
webpack-version-file-plugin@0.5.0:
version "0.5.0"
resolved "https://registry.yarnpkg.com/webpack-version-file-plugin/-/webpack-version-file-plugin-0.5.0.tgz#1711baafc06da373f3bb95de86cad831e00217e1"
integrity sha512-Ef5gGkD3OPtXU794XNt6JNzIv1dYmTqN3SfY25qRNg6/auOXGF4XBpPnisO9mJTUbIgBFcSEiV74uXJlrL0xfg==
dependencies:
ejs "~> 2.5.5"
ejs "^3.1.8"
fs latest
underscore "~1.6.0"
underscore "^1.13.6"

webpack-virtual-modules@^0.6.0, webpack-virtual-modules@^0.6.2:
version "0.6.2"
Expand Down Expand Up @@ -14229,7 +14216,7 @@ wildcard@^2.0.1:
resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67"
integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==

"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
Expand All @@ -14256,15 +14243,6 @@ wrap-ansi@^6.0.1, wrap-ansi@^6.2.0:
string-width "^4.1.0"
strip-ansi "^6.0.0"

wrap-ansi@^7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
dependencies:
ansi-styles "^4.0.0"
string-width "^4.1.0"
strip-ansi "^6.0.0"

wrap-ansi@^8.1.0:
version "8.1.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"
Expand Down
Loading