From 6f0028e1889cb4661313cf143e52151a548cb8da Mon Sep 17 00:00:00 2001 From: Jan Melcher Date: Thu, 20 Oct 2022 19:17:02 +0200 Subject: [PATCH] Specify version range for @types/fs-capacitor (#3) The types have been removed from DefinitelyTyped in https://github.com/DefinitelyTyped/DefinitelyTyped/pull/62785 Version 8.0.0 is the stub package, and version 2.0.0 is the only other version that exists, so pinning this version should not mess up any dependency tree and just fix the type problem. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3f042d5..44935f2 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ }, "dependencies": { "@types/express": "*", - "@types/fs-capacitor": "*", + "@types/fs-capacitor": "^2.0.0", "@types/koa": "*", "busboy": "^0.3.1", "fs-capacitor": "^2.0.4",