Skip to content

Commit

Permalink
Add dev command for angular
Browse files Browse the repository at this point in the history
  • Loading branch information
DamnClin committed Sep 22, 2024
1 parent e3d9bbd commit c60ffa7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
package tech.jhipster.lite.generator.client.angular.core.domain;

import static tech.jhipster.lite.module.domain.JHipsterModule.*;
import static tech.jhipster.lite.module.domain.npm.JHLiteNpmVersionSource.ANGULAR;
import static tech.jhipster.lite.module.domain.npm.JHLiteNpmVersionSource.COMMON;
import static tech.jhipster.lite.module.domain.npm.JHLiteNpmVersionSource.*;

import tech.jhipster.lite.module.domain.Indentation;
import tech.jhipster.lite.module.domain.JHipsterModule;
Expand Down Expand Up @@ -59,6 +58,8 @@ public JHipsterModule buildModule(JHipsterModuleProperties properties) {
.addDevDependency(packageName("typescript"), ANGULAR)
.addDevDependency(packageName("typescript-eslint"), COMMON)
.addDevDependency(packageName("npm-run-all2"), COMMON)
.addScript(scriptKey("dev"), scriptCommand("npm-run-all --parallel dev:*"))
.addScript(scriptKey("dev:ng"), scriptCommand("ng serve"))
.addScript(scriptKey("ng"), scriptCommand("ng"))
.addScript(scriptKey("start"), scriptCommand("ng serve"))
.addScript(scriptKey("build"), scriptCommand("npm-run-all build:*"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ void shouldCreateAngularModule() {
.containing(nodeDependency("globals"))
.containing(nodeDependency("typescript-eslint"))
.containing(nodeDependency("npm-run-all2"))
.containing(nodeScript("dev", "npm-run-all --parallel dev:*"))
.containing(nodeScript("dev:ng", "ng serve"))
.containing(nodeScript("ng", "ng"))
.containing(nodeScript("watch", "npm-run-all --parallel watch:*"))
.containing(nodeScript("watch:ng", "ng build --watch --configuration development"))
Expand Down

0 comments on commit c60ffa7

Please sign in to comment.