From 19b23f39d3ccc7dac3aef116b6784f0f13f65b77 Mon Sep 17 00:00:00 2001 From: Robert Jackson Date: Wed, 2 Sep 2020 10:12:35 -0400 Subject: [PATCH] Ensure version numbers are bumped for benchmark and local-linker. Due to this repos somewhat odd setup (we publish from within `dist/@glimmer/` instead of the location actually referenced by the `workspaces` configuration in `package.json`) we have to maintain the list of `package.json`s to update as special `release-it-yarn-workspaces` configuration (normally it would just infer everything from `workspaces` setting). --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index 15dffa4402..6d7f258702 100644 --- a/package.json +++ b/package.json @@ -128,10 +128,14 @@ ], "additionalManifests": { "dependencyUpdates": [ + "benchmark/package.json", + "lib/local-linker/package.json", "packages/*/*/package.json" ], "versionUpdates": [ "package.json", + "benchmark/package.json", + "lib/local-linker/package.json", "packages/*/*/package.json" ] }