Closed
Description
Versions
Angular CLI: 6.0.0-rc.0
Node: 8.9.3
OS: win32 x64
Angular: 6.0.0-rc.1
... animations, common, compiler, compiler-cli, core, forms
... http, language-service, platform-browser
... platform-browser-dynamic, router
@angular/cli: 6.0.0-rc.0
@angular-devkit/architect: 0.0.10
@angular-devkit/build-angular: 0.0.10
@angular-devkit/build-ng-packagr: 0.0.4
@angular-devkit/build-optimizer: 0.4.9
@angular-devkit/core: 0.4.9
@angular-devkit/schematics: 0.5.0
@ngtools/json-schema: 1.1.0
@ngtools/webpack: 6.0.0-beta.9
@schematics/angular: 0.5.0
@schematics/update: 0.5.0
typescript: 2.7.2
webpack: 4.1.0
Repro steps
- Create a new cli project with
ng new xxx
cd
into the new project- Try to generate a library with a scoped name:
ng g library @xxx/core
Observed behavior
It throws the following error in the shell:
Could not find an NgModule. Use the skip-import option to skip importing in NgModule.
Desired behavior
It should generate a library named @xxx/core
in the folder projects/xxx-core
or maybe projects/xxx/core
or even projects/core
with the correct package name @xxx/core
in the package.json file.
If it's not possible, then it should throw an error message that explains that it doesn't support scoped package names.