Skip to content

Commit

Permalink
Grunt file change, per feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
moflo committed May 14, 2014
1 parent b36bc89 commit bf92b0e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ module.exports = (grunt) ->
'bower_components/backbone/backbone.js'
'bower_components/backbone-deep-model/src/deep-model.js'
]
limited:
mobile_friendly:
files:
'<%= distFolder %>/formbuilder.js': '<%= compiledFolder %>/*.js'
'<%= vendorFolder %>/js/vendor_limited.js': [
'<%= vendorFolder %>/js/vendor_mobile_friendly.js': [
'bower_components/ie8-node-enum/index.js'
'bower_components/jquery.scrollWindowTo/index.js'
'bower_components/underscore.mixin.deepExtend/index.js'
Expand Down Expand Up @@ -119,6 +119,6 @@ module.exports = (grunt) ->


grunt.registerTask 'default', ALL_TASKS
grunt.registerTask 'limited', ['jst:all', 'coffee:all', 'concat:limited', 'stylus:all', 'clean:compiled']
grunt.registerTask 'mobile_friendly', ['jst:all', 'coffee:all', 'concat:mobile_friendly', 'stylus:all', 'clean:compiled']
grunt.registerTask 'dist', ['cssmin:dist', 'uglify:dist']
grunt.registerTask 'test', ['dist', 'karma']
2 changes: 1 addition & 1 deletion mobile_friendly.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<script src="http://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.0/backbone-min.js"></script>
<script src="vendor/js/vendor_limited.js"></script>
<script src="vendor/js/vendor_mobile_friendly.js"></script>
<script src="dist/formbuilder.js"></script>

<script>
Expand Down

0 comments on commit bf92b0e

Please sign in to comment.