Skip to content

Commit 8c1f016

Browse files
committed
Remove dry-run from testing. We can add this as an option, but in a follow-up
1 parent 1f788c1 commit 8c1f016

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/release/npm/npm-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export function runInteractiveNpmLogin(): boolean {
3030

3131
/** Runs NPM publish within a specified directory */
3232
export function runNpmPublish(packagePath: string, distTag: string): string | null {
33-
const result = spawnSync('npm', ['publish', '--access', 'public', '--tag', distTag, '--dry-run'], {
33+
const result = spawnSync('npm', ['publish', '--access', 'public', '--tag', distTag], {
3434
cwd: packagePath,
3535
shell: true,
3636
env: npmClientEnvironment,

0 commit comments

Comments
 (0)