Angular2 / Angular-cli: updating local project to Angular 4

I am trying to upgrade an angular-cli / angular 2 project to Angular 4. I updated my package.json with all the required angular4 modules and everything seems to be fine until I run the application. When I run the application, I get the following error:

Mistake:

Cannot read property "provide" undefined.

I've tried everything I can think of: I uninstalled node_modules and installed again with npm install, but still get the same error ... Any idea what might be wrong here / what I might try to solve? I am using angular-cli 1.0.0.rc-1

my package.json:

{
  "name": "Retail-Mobile",
  "version": "0.0.0",
  "license": "MIT",
  "scripts": {
    "ng": "ng",
    "start": "ng serve --proxy-config proxy.conf.json",
    "build": "ng build",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e"
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "^4.0.0",
    "@angular/common": "^4.0.0",
    "@angular/compiler": "^4.0.0",
    "@angular/compiler-cli": "^4.0.0",
    "@angular/core": "^4.0.0",
    "@angular/forms": "^4.0.0",
    "@angular/http": "^4.0.0",
    "@angular/platform-browser": "^4.0.0",
    "@angular/platform-browser-dynamic": "^4.0.0",
    "@angular/platform-server": "^4.0.0",
    "@angular/router": "^4.0.0",
    "core-js": "^2.4.1",
    "moment": "^2.17.1",
    "ng2-toastr": "^4.0.1",
    "rxjs": "^5.1.0",
    "typescript": "^2.2.1",
    "zone.js": "^0.8.5"
  },
  "devDependencies": {
    "@angular/cli": "1.0.0-rc.2",
    "@types/jasmine": "2.5.38",
    "@types/node": "~6.0.60",
    "bootstrap": "3.3.7",
    "codelyzer": "~2.0.0",
    "jasmine-core": "~2.5.2",
    "jasmine-spec-reporter": "~3.2.0",
    "jquery": "3.1.1",
    "karma": "~1.4.1",
    "karma-chrome-launcher": "~2.0.0",
    "karma-cli": "~1.0.1",
    "karma-jasmine": "~1.1.0",
    "karma-jasmine-html-reporter": "^0.2.2",
    "karma-coverage-istanbul-reporter": "^0.2.0",
    "protractor": "~5.1.0",
    "ts-node": "~2.0.0",
    "tslint": "~4.5.0"
  }
}

      

+3


source to share


1 answer


It turns out I forgot to add; at the end of the ng2-toastr import statement ... I'm surprised angular-cli gave me such a vague useless error ...



+1


source







All Articles