Skip to content

Commit

Permalink
revert: seems like a nope on npm i with this incantation
Browse files Browse the repository at this point in the history
  • Loading branch information
sjungling committed Feb 15, 2024
1 parent 1c7f859 commit 3ab8356
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,21 +44,15 @@ public String getDisplayName() {

@Override
public String getDescription() {
return "Applies Angular CLI";
return "Applies Angular CLI.";
}

@Override
protected List<String> getNpmCommand(Accumulator acc, ExecutionContext ctx) {
List<String> command = new ArrayList<>();

command.add("npm");
command.add("install");
command.add("&&");
command.add("node");
command.add("${nodeModules}/@angular/cli/bin/ng.js");
command.add("update");


command.addAll(Optional.ofNullable(codemodArgs).orElse(emptyList()));

return command;
Expand Down

0 comments on commit 3ab8356

Please sign in to comment.