I'm playing around with Angular CLI (on Windows 7) and want to create a script to generate the app, several components, routes, etc. Since I'm in Windows, the low hanging fruit is a simple batch file, but I found that not all of the ng commands are executed (not sure why).
What is the community recommendation for a script file in Win7? PowerShell? FYI, I do not have bash installed, but can if that is the recommendation. Thanks, --Ed Current batch file is something like this: ng new MyApp cd MyApp cd src cd app REM ** when ng g route is working again, replace the following ** ng g component admin ng g component reports ren admin +admin ren reports +reports cd +admin ng g component addUser ng g component editUser -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
