常用指令记录
1.创建项目,运行项目
ng new my-project
cd my-project
ng serve
2.安装组件
ng add ng-zorro-antd //安装antd
ng add --help //查看 add 下指令
3.更新
ng update --help //查看update 下指令
ng update --all //更新所有
ng update @angular/core //单独更新@angular/core组件
4.基于某个原理图生成和/或修改文件
ng generate --help //查看generate 下指令
ng g m tt // 在app文件夹下生成 tt module
ng g c tt --module tt //在创建的tt module 中在创建 tt 的 component
5.打包
ng build
ng build --help