Browse Source
Merge pull request #15264 from abpframework/issue-15247
CLI: Use created project's angular cli instead of the global ng cli
pull/15266/head
Yunus Emre Kalkan
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/NewCommand.cs
|
|
|
@ -97,7 +97,6 @@ public class NewCommand : ProjectCreationCommandBase, IConsoleCommand, ITransien |
|
|
|
|
|
|
|
Logger.LogInformation($"'{projectName}' has been successfully created to '{projectArgs.OutputFolder}'"); |
|
|
|
|
|
|
|
ConfigureAngularJsonForThemeSelection(projectArgs); |
|
|
|
ConfigureNpmPackagesForTheme(projectArgs); |
|
|
|
await RunGraphBuildForMicroserviceServiceTemplate(projectArgs); |
|
|
|
await CreateInitialMigrationsAsync(projectArgs); |
|
|
|
@ -106,6 +105,7 @@ public class NewCommand : ProjectCreationCommandBase, IConsoleCommand, ITransien |
|
|
|
if (!skipInstallLibs) |
|
|
|
{ |
|
|
|
await RunInstallLibsForWebTemplateAsync(projectArgs); |
|
|
|
ConfigureAngularJsonForThemeSelection(projectArgs); |
|
|
|
} |
|
|
|
|
|
|
|
var skipBundling = commandLineArgs.Options.ContainsKey(Options.SkipBundling.Long) || commandLineArgs.Options.ContainsKey(Options.SkipBundling.Short); |
|
|
|
|