dougludlow / ng2-bs3-modal

Angular Bootstrap 3 Modal Component
http://dougludlow.github.io/ng2-bs3-modal/
ISC License
261 stars 133 forks source link

Out of date deps? #48

Closed aidapsibr closed 8 years ago

aidapsibr commented 8 years ago

├── UNMET PEER DEPENDENCY @angular/common@^2.0.0-rc.1 ├── UNMET PEER DEPENDENCY @angular/compiler@^2.0.0-rc.1 ├── UNMET PEER DEPENDENCY @angular/core@^2.0.0-rc.1 ├── UNMET PEER DEPENDENCY @angular/platform-browser@^2.0.0-rc.1 ├── UNMET PEER DEPENDENCY @angular/platform-browser-dynamic@^2.0.0-rc.1 └── ng2-bs3-modal@0.6.0

I am running the latest angular2 packages.

dougludlow commented 8 years ago

@psibernetic what version of angular do you have installed? As of rc.0, the angular team changed how angular2 is distributed on npm:

All of the packages are now distributed under the @angular npm scope. This changes how Angular is installed via npm and how you import the code.

You can install rc.1 with:

npm install --save @angular/core @angular/compiler @angular/common @angular/platform-browser @angular/platform-browser-dynamic rxjs@5.0.0-beta.6 zone.js@0.6.12

And remove the old one like so:

npm uninstall --save angular2

Otherwise ng2-bs3-bootstrap@0.5.x still works with angular2@2.0.0-beta.x.

aidapsibr commented 8 years ago

Thanks!