凉亭组件的最佳实践

时间:2015-07-09 13:32:48

标签: gulp bower

所以我刚开始使用gulp,bower和polymer等工具编写前端代码。

我通过凉亭安装了聚合物和一些材料设计组件。

是从bower_component文件夹引用文件的最佳做法,例如:

<link rel="import" href="bower_components/paper-button/paper-button.html">

或者我应该使用gulp来复制另一个文件夹结构所需的内容。

谢谢!

2 个答案:

答案 0 :(得分:-1)

wiredep很可能是您正在寻找的套餐。

它将搜索 bower_components 文件夹并将所有依赖项文件注入 index.html

HTML中的用法:

<html>
<head>
  <!-- bower:css -->
  <!-- endbower -->
</head>
<body>
  <!-- bower:js -->
  <!-- endbower -->
</body>

gulp 中你只需要:

gulp.src('index.html')
  .pipe(wiredep({
    optional: 'configuration',
    goes: 'here'
  }))
  .pipe(gulp.dest('./dest'));

答案 1 :(得分:-1)

创建.bowerrc

应该是这样的:

ex:.bowerrc

{
 "directory:"folder/path"
}

do:bower install