Skip to content

Commit

Permalink
fix: revert simplification of allwaysLinkLocal option assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
tada5hi committed Dec 14, 2023
1 parent 43609c8 commit d5574bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/node-workspace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class NodeWorkspace extends WorkspacePlugin<Package> {
) {
super(github, targetBranch, repositoryConfig, options);

this.alwaysLinkLocal = options.alwaysLinkLocal !== false;
this.alwaysLinkLocal = options.alwaysLinkLocal === false ? false : true;
this.updatePeerDependencies = options.updatePeerDependencies === true;
}
protected async buildAllPackages(
Expand Down

0 comments on commit d5574bb

Please sign in to comment.