Skip to content

Commit

Permalink
fix(gen): fix build when not selecting socket.io
Browse files Browse the repository at this point in the history
Changes:
- remove `filters.socketio` conditional from vendor search glob
  • Loading branch information
kingcody committed Aug 28, 2014
1 parent b67d2b6 commit fdf063c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/templates/client/index.html
Expand Up @@ -44,10 +44,10 @@
<script src="bower_components/es5-shim/es5-shim.js"></script>
<script src="bower_components/json3/lib/json3.min.js"></script>
<![endif]-->
<!-- build:js({client<% if(filters.socketio) { %>,node_modules<% } %>}) app/vendor.js -->
<!-- build:js({client,node_modules}) app/vendor.js -->
<!-- bower:js -->
<!-- endbower -->
<% if(filters.socketio) { %><script src="socket.io-client/socket.io.js"></script><% } %>
<!-- endbower --><% if(filters.socketio) { %>
<script src="socket.io-client/socket.io.js"></script><% } %>
<!-- endbuild -->

<!-- build:js({.tmp,client}) app/app.js -->
Expand Down

0 comments on commit fdf063c

Please sign in to comment.