From a07ae78f1c0bdcbe606754aa2288dd06150c855d Mon Sep 17 00:00:00 2001 From: Jeffry Hesse <5544326+DarthHater@users.noreply.github.com> Date: Fri, 30 Jul 2021 13:06:43 -0800 Subject: [PATCH] fix: switch to force-resolutions to avoid error when running on a project without a package-lock.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6e18be4a..6cd4d3d5 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "y18n": "^5.0.8" }, "scripts": { - "preinstall": "npx npm-force-resolutions", + "preinstall": "npx force-resolutions", "test": "mocha -r ts-node/register src/**/*.spec.ts", "build": "tsc -p tsconfig.json", "build-dev": "tsc -p tsconfig.development.json",