From efbaf7b343fdf58b7498ec01a03ee2d77127b4ec Mon Sep 17 00:00:00 2001 From: Marco Link Date: Fri, 28 Oct 2022 09:38:37 +0200 Subject: [PATCH] fix: lock fast-copy dependency [NONE] --- .github/dependabot.yml | 9 ++++++--- package.json | 2 +- src/types.ts | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4ef719c..c5e5c69 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,9 +9,12 @@ updates: timezone: UTC open-pull-requests-limit: 10 ignore: - - dependency-name: husky - versions: - - ">=5.0.0" + - dependency-name: husky + versions: + - ">=5.0.0" + - dependency-name: "fast-copy" + versions: + - ">=3.0.0" commit-message: prefix: build include: scope diff --git a/package.json b/package.json index fa3f042..0bda7e1 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "node": ">=12" }, "dependencies": { - "fast-copy": "^3.0.0", + "fast-copy": "^2.1.7", "lodash.isplainobject": "^4.0.6", "lodash.isstring": "^4.0.1", "p-throttle": "^4.1.1", diff --git a/src/types.ts b/src/types.ts index 88826c2..69c83a1 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1,6 +1,6 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ - import { AxiosRequestHeaders } from 'axios' + import type { AxiosInstance as OriginalAxiosInstance, AxiosRequestConfig,