2017-04-09 2 views
1

@ angular/cli, webpack 및 typescript 버전을 업데이트 한 후 각도 2 프로젝트를 사용하고 있습니다.이 오류가 발생합니다. 혼란스러운 측면은이 각도 2에서만 오류가 발생한다는 것입니다. 프로젝트, 다른 하나는 완벽하게 작동합니다. 아래에 오류 및 package.json을 공유합니다. 전 세계적으로 각도 cli를 업데이트했습니다. 버전에 문제가 있습니까?각도 2 TypeError : null 오류의 'profile'속성을 읽을 수 없습니다.

\node_modules\@angular\cli\node_modules\webpack\lib\Compilation.js:329 
            if(_this.profile) { 
              ^

TypeError: Cannot read property 'profile' of null 

package.json

{ 
"name": "crm-ca", 
"version": "0.0.0", 
"license": "MIT", 
"angular-cli": {}, 
"scripts": { 
    "start": "ng serve", 
    "lint": "tslint \"src/**/*.ts\"", 
    "test": "ng test", 
    "pree2e": "webdriver-manager update", 
    "e2e": "protractor" 
}, 
"private": true, 
"dependencies": { 
    "@angular/common": "^2.3.1", 
    "@angular/compiler": "^2.3.1", 
    "@angular/core": "^2.3.1", 
    "@angular/forms": "^2.3.1", 
    "@angular/http": "^2.3.1", 
    "@angular/platform-browser": "^2.3.1", 
    "@angular/platform-browser-dynamic": "^2.3.1", 
    "@angular/router": "^3.3.1", 
    "angular2-cookie": "^1.2.5", 
    "angular2-text-mask": "^2.1.0", 
    "bootstrap": "^4.0.0-alpha.3", 
    "core-js": "^2.4.1", 
    "rxjs": "^5.0.1", 
    "ts-helpers": "^1.1.1", 
    "zone.js": "^0.7.2" 
}, 
"devDependencies": { 
    "@angular/cli": "^1.0.0", 
    "@angular/compiler-cli": "^2.3.1", 
    "@types/bootstrap": "^3.3.32", 
    "@types/jasmine": "2.5.38", 
    "@types/jquery": "^2.0.40", 
    "@types/node": "^6.0.42", 
    "codelyzer": "~2.0.0-beta.1", 
    "jasmine-core": "2.5.2", 
    "jasmine-spec-reporter": "2.5.0", 
    "karma": "1.2.0", 
    "karma-chrome-launcher": "^2.0.0", 
    "karma-cli": "^1.0.1", 
    "karma-jasmine": "^1.0.2", 
    "karma-remap-istanbul": "^0.2.1", 
    "protractor": "~4.0.13", 
    "ts-node": "1.2.1", 
    "tslint": "^4.0.2", 
    "typescript": "^2.2.2", 
    "webpack": "^2.2.0", 
    "webpack-dev-server": "^2.1.0-beta.9" 
} 
} 
+0

node_modules 폴더를 삭제하고 * npm install *을 다시 실행 해 보셨습니까? –

+0

어제 약 10 번) –

+0

왜 웹팩이 필요합니까? package.json에서 제거해보십시오. angular-cli는 자체 버전 –

답변

2

나는 당신의 package.json에서 webpackwebpack-dev-server을 제거하는 것이 좋습니다. angular-cliwebpack의 버전을 사용하며 이는 package.json에있는 것과 충돌합니다. 나는이 문제가 있었고 그것은 나를 위해 일한 해결책이다.

관련 문제