7

Is it possible to generate an empty workspace with Angular CLI v6? It may contain an initial app but within the default projects folder.

1
  • Have you tried ng new yourApp ? Commented May 7, 2018 at 15:56

2 Answers 2

7

Update: Angular 7

It is now possible to create an empty workspace with the following command:

ng new --createApplication false


Currently you can not but hopefully this feature will be availiable soon.

You can track related issue https://github.com/angular/angular-cli/issues/10709

Sign up to request clarification or add additional context in comments.

Comments

0

BTW, with Angular 16, you need to use following command to create an empty workspace without an initial app:

ng new MyWorkspace --no-create-application

see angular doc on new commandhttps://angular.io/cli/new

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.