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 f8ff157 commit 184979bCopy full SHA for 184979b
packages/build/src/npm-packages/bump.ts
@@ -66,6 +66,13 @@ export async function bumpMongoshReleasePackages(
66
}
67
68
await updateShellApiMongoshVersionFn(version);
69
+
70
+ // Update package-lock.json
71
+ spawnSync('npm', ['install', '--package-lock-only'], {
72
+ stdio: 'inherit',
73
+ cwd: monorepoRootPath,
74
+ encoding: 'utf8',
75
+ });
76
77
78
/** Updates the shell-api constant to match the mongosh version. */
0 commit comments