[Angular] Angular CLI 實用小技巧 2
- 建立元件與檔案 (service,class,interface ….)
- 建立檔案時指令的預設值設定
建立 Component 小技巧
Options | Alias | Description |
---|---|---|
--flat | 不要建立 Component 資料夾 | |
--inline-template | -it | 不會建立 .html,將 html template 寫在 .ts file |
--inline-style | -is | 不會建立 .css,將 style 寫在 .ts file |
--spec false | 不會建立 .spec | |
--prefix my | selector 加上 my prefix. ex: my-pet instead of app-pet | |
--dry-run | -d | 顯示那些檔案會新增跟那些檔案會變更 |
建立 Service 小技巧
此功能也能用在建立 Component 上
建立 Classes, Interfaces, Enums 小技巧
建立預設值(超好用)
此設定會寫在 .angular-cli.json 底下 defautls 區塊