Skip to content

Commit

Permalink
Merge pull request #15264 from abpframework/issue-15247
Browse files Browse the repository at this point in the history
CLI: Use created project's angular cli instead of the global ng cli
  • Loading branch information
yekalkan authored Dec 29, 2022
2 parents 1a10e58 + b7b03f5 commit 73eb26e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ public async Task ExecuteAsync(CommandLineArgs commandLineArgs)

Logger.LogInformation($"'{projectName}' has been successfully created to '{projectArgs.OutputFolder}'");

ConfigureAngularJsonForThemeSelection(projectArgs);
ConfigureNpmPackagesForTheme(projectArgs);
await RunGraphBuildForMicroserviceServiceTemplate(projectArgs);
await CreateInitialMigrationsAsync(projectArgs);
Expand All @@ -106,6 +105,7 @@ public async Task ExecuteAsync(CommandLineArgs commandLineArgs)
if (!skipInstallLibs)
{
await RunInstallLibsForWebTemplateAsync(projectArgs);
ConfigureAngularJsonForThemeSelection(projectArgs);
}

var skipBundling = commandLineArgs.Options.ContainsKey(Options.SkipBundling.Long) || commandLineArgs.Options.ContainsKey(Options.SkipBundling.Short);
Expand Down

0 comments on commit 73eb26e

Please sign in to comment.