From 55e7729cb8c75b03b8d0cef6f5591fc69ceadcfd Mon Sep 17 00:00:00 2001 From: Jason Bedard Date: Fri, 13 Jan 2023 13:47:26 -0800 Subject: [PATCH] build: remove workaround for fixed pnpm issue See https://github.com/pnpm/pnpm/issues/5493 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 7d8ac09fb..4e52528a1 100644 --- a/package.json +++ b/package.json @@ -36,8 +36,8 @@ "// overrides.semver-max&is-odd": "// these are for the npm/private/test/package.json but pnpm has a bug where resolutions need to be specified in the root package.json but the paths are still relative to the package.json where the resolution applies", "overrides": { "jsonify": "https://github.com/aspect-build/test-packages/releases/download/0.0.0/@foo-jsonify-0.0.0.tgz", - "semver-max": "file:../../../npm/private/test/vendored/semver-max", - "is-odd": "file:../../../../../npm/private/test/vendored/is-odd" + "semver-max": "file:./npm/private/test/vendored/semver-max", + "is-odd": "file:./npm/private/test/vendored/is-odd" } } }