将Angular2 PrimeNG版本1.1.4更新为上一版本

时间:2017-04-06 15:05:26

标签: angular typescript version primeng

我对angular2比较新,所以我想知道如何将我的版本(1.1.4)更新到上一版本!

我正在使用angular2的2.0.0-rc.5版本。

已经尝试过了

npm install primeng --save

但是package.json仍然保留了这个值:"" primeng":" ^ 1.1.4","

来自angular的根目录的package.json,以及node_modules目录中的primeng

3 个答案:

答案 0 :(得分:7)

供将来参考: 不得不卸载:

('red', 'aaa [bbb] hello')
('blue', 'aaa')
('green', 'ccc')

运行以下代码以避免不必要的错误:

npm uninstall primeng --save

然后使用您想要的版本安装

npm cache verify

谢谢你回答

答案 1 :(得分:3)

You only need run npm update --save into the folder that contains your package.json

Before:

"dependencies": {
   ....
    "primeng": "^1.1.4",
   ....
 },

After:

"dependencies": {
    ....
   "primeng": "^2.0.5",
    ....
 },

Note: this command update whole your dependencies...

答案 2 :(得分:0)

使用" import {SidebarModule} from 'primeng/components/sidebar/sidebar';"

代替" import { SidebarModule } from 'primeng/primeng';"