Skip to content

Commit

Permalink
Update line to remove -preview when already removed
Browse files Browse the repository at this point in the history
  • Loading branch information
Mitch-At-Work committed Sep 20, 2024
1 parent c189a92 commit 746e7d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ async function stableRelease(tree: Tree, options: NormalizedSchema & { isSplitPr
);

unknownProjectsToBeUpdated?.forEach(projectName => {
projectName = projectName.replace('-preview', '');
const projectConfig = getProjectConfig(tree, {
packageName: projectName,
});
Expand Down
2 changes: 1 addition & 1 deletion tools/workspace-plugin/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export const workspacePaths = {
codeowners: joinPathFragments('/.github', 'CODEOWNERS'),
},
storybook: {
root: '/.storyboook',
root: '/.storybook',
},
};

Expand Down

0 comments on commit 746e7d6

Please sign in to comment.