是否应该在ember应用中安装bower或broccoli



我是js包管理器和构建工具的新手,所以这对我来说似乎有点困惑。

我已经设置了一个新的ember应用程序,我想以推荐/传统的方式添加依赖项(基础)。似乎有两种方法可以将其添加到您的项目中,使用凉菜或西兰花。

本页建议使用西兰花:

If you want to use the .scss version of Foundation, you should first configure your project to use broccoli-sass with:
npm install --save-dev broccoli-sass
and then rename your app/styles/app.css to app/styles/app.scss.
Then you can install Foundation using Bower with:
bower install --save-dev foundation
Now, inside your app/styles/app.scss, you can import the Foundation styles with:
@import 'bower_components/foundation/scss/normalize';
@import 'bower_components/foundation/scss/foundation';

而此处建议使用

$> bower install --save bootstrap
Afterwards add following two lines to your ember-cli-builds.js (or Brocfile.js if you are using an older version of Ember.js):
app.import(app.bowerDirectory + '/bootstrap/dist/js/bootstrap.js');
app.import(app.bowerDirectory + '/bootstrap/dist/css/bootstrap.css');

有人能告诉我这些方法之间的区别是什么,哪一个是更好的/推荐的方法?

官方Ember - CLI文档建议使用bower: "Ember CLI使用bower进行依赖管理"

相关内容

  • 没有找到相关文章