angular中安装ng-alain 插件

ng-alain官方给的安装如下:
ng new demo –style less
cd demo
ng add ng-alain
ng serve
但是ng add报错。 最终还是按照npm来安装的
λ npm install ng-alain –save
npm WARN ng-alain@1.0.4 requires a peer of @angular-devkit/core@^0.6.1 but none is installed. You must install peer dependencies yourself.
npm WARN ng-alain@1.0.4 requires a peer of @angular-devkit/schematics@^0.6.1 but none is installed. You must install peer dependencies yourself.
npm WARN ng-alain@1.0.4 requires a peer of @schematics/angular@^0.6.1 but none is installed. You must install peer dependencies yourself.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.4: wanted {“os”:”darwin”,”arch”:”any”} (current: {“os”:”win32″,”arch”:”x64″})

+ ng-alain@1.0.4
added 1 package in 18.948s

转载自:https://blog.csdn.net/muzizongheng/article/details/85246899

You may also like...