Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
fix(utils): add line break
Browse files Browse the repository at this point in the history
  • Loading branch information
Ron Netzer committed Jun 29, 2021
1 parent cbaff83 commit 3a16f7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ jobs:
git fetch
git config main.remote origin
git config main.merge refs/heads/main
git pull origin main --allow-unrelated-histories
git pull origin main --rebase --allow-unrelated-histories
git push -f origin --delete v${{ needs.release.outputs.major }} || true
git push -f origin --delete v${{ needs.release.outputs.major }}.${{ needs.release.outputs.minor }} || true
git push -f --tags origin main v${{ needs.release.outputs.major }}
Expand Down
1 change: 1 addition & 0 deletions packages/utils/src/lib/nx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export type WorkspaceProjects = WorkspaceJsonConfiguration['projects'];

export function getWorkspaceProjects(): WorkspaceProjects {
const workspaceFile = tree.exists('angular.json') ? 'angular.json' : 'workspace.json';

debug(`🐞 Found ${workspaceFile} as nx workspace`);

const workspaceContent: WorkspaceJsonConfiguration = JSON.parse(
Expand Down

0 comments on commit 3a16f7d

Please sign in to comment.