We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b38f519 commit c8365e6Copy full SHA for c8365e6
packages/build/src/npm-packages.ts
@@ -20,7 +20,8 @@ export function bumpNpmPackages(version: string): void {
20
'--force-publish',
21
'--yes'
22
], {
23
- stdio: 'inherit'
+ stdio: 'inherit',
24
+ cwd: PROJECT_ROOT
25
});
26
}
27
@@ -47,7 +48,8 @@ export function publishNpmPackages(): void {
47
48
49
50
51
52
53
54
55
@@ -56,7 +58,10 @@ function listNpmPackages(): {version: string}[] {
56
58
LERNA_BIN, [
57
59
'list',
60
'--json',
- ]
61
+ ],
62
+ {
63
64
+ }
65
).toString();
66
67
const packages = JSON.parse(lernaListOutput);
0 commit comments