We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 182268c commit 17c43a8Copy full SHA for 17c43a8
packages/build/src/publish-mongosh.ts
@@ -14,6 +14,10 @@ import type { pushTags as pushTagsType } from './npm-packages';
14
import { type publishToNpm as publishToNpmType } from './npm-packages';
15
import type { PackageInformationProvider } from './packaging';
16
import { getPackageFile } from './packaging';
17
+import {
18
+ bumpAuxiliaryPackages,
19
+ bumpMongoshReleasePackages,
20
+} from './npm-packages/bump';
21
22
export async function publishMongosh(
23
config: Config,
@@ -59,6 +63,9 @@ export async function publishMongosh(
59
63
latestDraftTag.name
60
64
);
61
65
66
+ bumpAuxiliaryPackages();
67
+ await bumpMongoshReleasePackages(releaseVersion);
68
+
62
69
await publishArtifactsToBarque(
70
barque,
71
config.project as string,
0 commit comments