tasks.register("npmInstall") { commandLine("npm.cmd", "install") // commandLine("npm", "install") } tasks.register("ngBuild") { dependsOn("npmInstall", "generateFrontendApi") // commandLine("npm", "run", "build") commandLine("npm.cmd", "run", "build") } //dependencies { // implementation(project(":backend")) //}