728x90
반응형
[td@localhost web-client]$ ng g c test
Error: Cannot read property 'dasherize' of undefined
Cannot read property 'dasherize' of undefined
오랜만에 글 좀 써보려고 했더니, 역시 Angular 답게 바로 에러 뱉어주시고~ (필자는 angular5 사용 중)
스택오버플로우에 물어보니, @angular-devkit/core 모듈이 없어서 그런거랍니다. 바로 설치 고고
스택 오버 플로우 짱
npm install --save @angular-devkit/core
* --save 안해줘도 되는데, 그냥 해줘버림
[td@localhost web-client]$ ng g c test
create src/app/test/test.component.scss (0 bytes)
create src/app/test/test.component.html (23 bytes)
create src/app/test/test.component.spec.ts (614 bytes)
create src/app/test/test.component.ts (262 bytes)
update src/app/app.module.ts (5182 bytes)
정상적으로 설치됨 괏괏 dd
※ 출처
- https://stackoverflow.com/questions/48931233/cannot-read-property-dasherize-of-undefined
728x90
반응형
'Programming > JavaScript & TypeScript' 카테고리의 다른 글
[Node Express - Angular5] JWT 기반 사용자 인증 개발 - Angular 편 (0) | 2019.05.03 |
---|---|
ng generate error : Error: Path "/__path__/__name@dasherize@if-flat__/__name@dasherize__.service.spec.ts" does not exist. (0) | 2019.05.03 |
(NPM) 특정 버전의 모듈 설치하기 (0) | 2019.01.17 |
(Angular) Error - You can check this with `npm ls @ngtools/webpack`, and then remove the extra copies. 해결법 (0) | 2019.01.17 |
(Angular5) 시작하기 (0) | 2018.12.03 |