File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import { spawnSync } from '../helpers/spawn-sync';
11
11
import type { SpawnSyncOptionsWithStringEncoding } from 'child_process' ;
12
12
13
13
export function publishNpmPackages (
14
- isDryRun : boolean ,
14
+ isDryRun = false ,
15
15
isAuxiliaryOnly = false ,
16
16
listNpmPackages : typeof listNpmPackagesFn = listNpmPackagesFn ,
17
17
markBumpedFilesAsAssumeUnchangedFn : typeof markBumpedFilesAsAssumeUnchanged = markBumpedFilesAsAssumeUnchanged ,
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ export async function runPublish(
81
81
// ensures the segment api key to be present in the published packages
82
82
await writeBuildInfo ( config , 'packaged' ) ;
83
83
84
- publishNpmPackages ( ! ! config . isDryRun , config . isAuxiliaryOnly ) ;
84
+ publishNpmPackages ( config . isDryRun , config . isAuxiliaryOnly ) ;
85
85
86
86
await publishToHomebrew (
87
87
homebrewCoreGithubRepo ,
You can’t perform that action at this time.
0 commit comments