coding-latte / codinglatte.com-comments

Comments on Coding Latte
0 stars 0 forks source link

posts/angular/angular-6-angular-cli-workspaces/ #11

Open utterances-bot opened 5 years ago

utterances-bot commented 5 years ago

Angular 6 - Angular CLI Workspaces | Coding Latte - Coding is fun

One of the least talked about features of Angular 6 is Angular CLI Workspaces. Workspaces or Angular CLI Workspaces give angular developers the ability to have more than one project in one workspace. This brings all your projects under the same workspace.

https://codinglatte.com/posts/angular/angular-6-angular-cli-workspaces/

johanchouquet commented 5 years ago

A word on your final thoughts: now, with Angular CLI 8+, it's possible to generate an empty workspace, like that: ng new myWorkspace --createApplication=false See here

Then, by using: ng g application myApp, it'll generate an angular app, in the project folder.