File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 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';
1111import type { SpawnSyncOptionsWithStringEncoding } from 'child_process' ;
1212
1313export function publishNpmPackages (
14- isDryRun : boolean ,
14+ isDryRun = false ,
1515 isAuxiliaryOnly = false ,
1616 listNpmPackages : typeof listNpmPackagesFn = listNpmPackagesFn ,
1717 markBumpedFilesAsAssumeUnchangedFn : typeof markBumpedFilesAsAssumeUnchanged = markBumpedFilesAsAssumeUnchanged ,
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ export async function runPublish(
8181 // ensures the segment api key to be present in the published packages
8282 await writeBuildInfo ( config , 'packaged' ) ;
8383
84- publishNpmPackages ( ! ! config . isDryRun , config . isAuxiliaryOnly ) ;
84+ publishNpmPackages ( config . isDryRun , config . isAuxiliaryOnly ) ;
8585
8686 await publishToHomebrew (
8787 homebrewCoreGithubRepo ,
You can’t perform that action at this time.
0 commit comments