Skip to content

Commit

Permalink
CLI: Run change-theme schematics after the install-libs command
Browse files Browse the repository at this point in the history
  • Loading branch information
EngincanV committed Dec 29, 2022
1 parent 1a10e58 commit b7b03f5
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 b7b03f5

Please sign in to comment.