我不确定标题是否正确,但我是 Bower、Gulp、Strongloop 甚至 AngularJS 的新手。
我正在使用 bower、gulp 和 Strongloop 更新现有应用程序,并且我想向应用程序添加一个 bower 组件(这个:https ://github.com/fraywing/textAngular )。
我bower install textAngular
按照自述文件中的说明做了,但现在我应该将这些行添加到我的应用程序中:
<link rel='stylesheet' href='/bower_components/textAngular/dist/textAngular.css'>
<script src='/bower_components/textAngular/dist/textAngular-rangy.min.js'></script>
<script src='/bower_components/textAngular/dist/textAngular-sanitize.min.js'></script>
<script src='/bower_components/textAngular/dist/textAngular.min.js'></script>
但是我的应用程序使用的是 Strongloop、gulp 和咖啡脚本,所以有很多文件,不像经典的 html 文件,我完全迷失了。
你能帮我找到下一步的工作吗?非常感谢 :)