Grunt CDNify不会对文件进行CND化

时间:2014-02-09 15:57:22

标签: angularjs build gruntjs cdn yeoman

我使用Yeoman并尝试使用grunt来构建和优化我的dist。

我注意到cdnify:dist之后我的index.html文件在相同之后仍然是相同的并仍然引用本地bower。

<script src="bower_components/angular/angular.js"></script>

这个构建过程似乎通过Ok:

Running "cdnify:dist" (cdnify) task
Going through dist/404.html, dist/index.html to update script refs

使用AngularJS 1.2.6,CDNify 0.2.2。

我的bower.json似乎与guidelines

一致

我错过了什么吗?还有其他选择吗?

1 个答案:

答案 0 :(得分:4)

这是带有CDNify的reported issue。似乎google-cdn是支持硬编码的版本,Angular 1.2.x目前不支持。

Dan Smith (AKA X1011),通过使用grunt-htmlrefs手动更新脚本标记来解决此问题。你可以看到他是如何做到{em> verge-mobile-bingo 的in this commit