Skip to content

Commit

Permalink
build: remove installPackagesTask
Browse files Browse the repository at this point in the history
  • Loading branch information
khalilou88 committed Oct 10, 2024
1 parent ac26ba2 commit 550ffec
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
5 changes: 0 additions & 5 deletions packages/nx-gradle/src/generators/init/generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import {
addProjectConfiguration,
formatFiles,
generateFiles,
installPackagesTask,
joinPathFragments,
logger,
offsetFromRoot,
Expand Down Expand Up @@ -147,10 +146,6 @@ export async function initGenerator(
if (!options.skipFormat) {
await formatFiles(tree);
}

return () => {
installPackagesTask(tree);
};
}

function updateNxJson(tree: Tree, options: NormalizedSchema) {
Expand Down
5 changes: 0 additions & 5 deletions packages/nx-maven/src/generators/init/generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import {
addProjectConfiguration,
formatFiles,
generateFiles,
installPackagesTask,
joinPathFragments,
logger,
offsetFromRoot,
Expand Down Expand Up @@ -123,10 +122,6 @@ export async function initGenerator(
if (!options.skipFormat) {
await formatFiles(tree);
}

return () => {
installPackagesTask(tree);
};
}

function updateNxJson(tree: Tree, options: NormalizedSchema) {
Expand Down

0 comments on commit 550ffec

Please sign in to comment.