Skip to content

Commit 232cda5

Browse files
committed
fix lerna commands and comment out publish
1 parent 4daaa93 commit 232cda5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/build/src/npm-packages.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export function bumpNpmPackages(version: string): void {
1212

1313
spawnSync(LERNA_BIN, [
1414
'version',
15-
'--bump', version,
15+
version,
1616
'--no-changelog',
1717
'--no-push',
1818
'--exact',
@@ -40,7 +40,7 @@ export function publishNpmPackages(): void {
4040

4141
spawnSync(LERNA_BIN, [
4242
'publish',
43-
'--bump', 'from-package',
43+
'from-package',
4444
'--no-changelog',
4545
'--no-push',
4646
'--exact',

packages/build/src/publish.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { GithubRepo } from './github-repo';
22
import Config from './config';
33
import { redactConfig } from './redact-config';
4-
import { publishNpmPackages } from './npm-packages';
4+
// import { publishNpmPackages } from './npm-packages';
55

66
export default async function publish(
77
config: Config,

0 commit comments

Comments
 (0)