File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export function bumpNpmPackages(version: string): void {
12
12
13
13
spawnSync ( LERNA_BIN , [
14
14
'version' ,
15
- '--bump' , version ,
15
+ version ,
16
16
'--no-changelog' ,
17
17
'--no-push' ,
18
18
'--exact' ,
@@ -40,7 +40,7 @@ export function publishNpmPackages(): void {
40
40
41
41
spawnSync ( LERNA_BIN , [
42
42
'publish' ,
43
- '--bump' , ' from-package',
43
+ 'from-package' ,
44
44
'--no-changelog' ,
45
45
'--no-push' ,
46
46
'--exact' ,
Original file line number Diff line number Diff line change 1
1
import { GithubRepo } from './github-repo' ;
2
2
import Config from './config' ;
3
3
import { redactConfig } from './redact-config' ;
4
- import { publishNpmPackages } from './npm-packages' ;
4
+ // import { publishNpmPackages } from './npm-packages';
5
5
6
6
export default async function publish (
7
7
config : Config ,
You can’t perform that action at this time.
0 commit comments