Skip to content

Commit

Permalink
chore(repo): remove deprecated nx --with-deps
Browse files Browse the repository at this point in the history
  • Loading branch information
AgentEnder committed Oct 15, 2021
1 parent 34f87ee commit 4efe39a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- uses: bahmutov/npm-install@v1.4.5
- run: yarn nx affected --target=build --base=origin/master~1 --parallel --with-deps
- run: yarn nx affected --target=build --base=origin/master~1 --parallel
- uses: actions/upload-artifact@v2
with:
name: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- uses: bahmutov/npm-install@v1.4.5
- run: yarn nx affected -- --target=build --base=origin/master --parallel --with-deps
- run: yarn nx affected -- --target=build --base=origin/master --parallel
- uses: actions/upload-artifact@v2
with:
name: dist
Expand Down
2 changes: 1 addition & 1 deletion tools/scripts/publish-all/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function PublishAll(version: string, tag = 'latest') {

PatchPackageVersions(version, false);

execSync('npx nx run-many --all --target="build" --with-deps', {
execSync('npx nx run-many --all --target="build"', {
stdio: 'inherit',
});

Expand Down
2 changes: 1 addition & 1 deletion tools/utils/get-affected.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function getAffectedProjects(
} else {
const cmd = `npx nx print-affected ${
all ? '--all' : '--base="HEAD~1"'
} --target="build" --select=tasks.target.project --with-deps`;
} --target="build" --select=tasks.target.project`;

console.log(cmd);

Expand Down

0 comments on commit 4efe39a

Please sign in to comment.