Skip to content

Commit 69baf66

Browse files
committed
use npx and use tags in all cases
1 parent 72f04bd commit 69baf66

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

packages/build/src/npm-packages/bump.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export async function bumpMongoshReleasePackages(): Promise<void> {
5959

6060
/** Bumps auxiliary packages without setting a new version of mongosh. */
6161
export function bumpAuxiliaryPackages() {
62-
spawnSync('bump-monorepo-packages', [], {
62+
spawnSync('npx', ['bump-monorepo-packages'], {
6363
stdio: 'inherit',
6464
cwd: PROJECT_ROOT,
6565
encoding: 'utf8',

packages/build/src/npm-packages/publish.ts

-4
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,6 @@ export function publishNpmPackages(
4747
'--no-private',
4848
'--no-changelog',
4949
'--exact',
50-
// During mongosh releases we handle the tags manually
51-
...(!useAuxiliaryPackagesOnly
52-
? ['--no-git-tag-version', '--no-push']
53-
: []),
5450
'--force-publish',
5551
'--yes',
5652
'--no-verify-access',

0 commit comments

Comments
 (0)