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 b4f8313 commit 4de31e0Copy full SHA for 4de31e0
scripts/release/utils/workspace.ts
@@ -52,7 +52,9 @@ export function mapWorkspaceToPackages(
52
});
53
})
54
)
55
- ).then(paths => paths.reduce((arr: string[], val: string[]) => arr.concat(val), []));
+ ).then(paths =>
56
+ paths.reduce((arr: string[], val: string[]) => arr.concat(val), [])
57
+ );
58
}
59
60
function mapPackagestoPkgJson(packagePaths: string[]) {
0 commit comments