Skip to content

Commit

Permalink
Fixes #131
Browse files Browse the repository at this point in the history
  • Loading branch information
Vish committed Jan 14, 2016
1 parent 1f8c2c7 commit 6884d70
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ module.exports = function(grunt) {
],
dest : 'js/freeboard.plugins.js'
},
'fb+plugins' : {
'fb_plugins' : {
src : [
'js/freeboard.js',
'js/freeboard.plugins.js'
],
dest : 'js/freeboard+plugins.js'
dest : 'js/freeboard_plugins.js'
}
},
cssmin : {
Expand Down Expand Up @@ -82,9 +82,9 @@ module.exports = function(grunt) {
'js/freeboard.thirdparty.min.js' : [ 'js/freeboard.thirdparty.js' ]
}
},
'fb+plugins': {
'fb_plugins': {
files: {
'js/freeboard+plugins.min.js' : [ 'js/freeboard+plugins.js' ]
'js/freeboard_plugins.min.js' : [ 'js/freeboard_plugins.js' ]
}
}
},
Expand All @@ -108,5 +108,5 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-string-replace');
grunt.registerTask('default', [ 'concat:css', 'cssmin:css', 'concat:fb', 'concat:thirdparty', 'concat:plugins', 'concat:fb+plugins', 'uglify:fb', 'uglify:plugins', 'uglify:fb+plugins', 'uglify:thirdparty', 'string-replace:css' ]);
grunt.registerTask('default', [ 'concat:css', 'cssmin:css', 'concat:fb', 'concat:thirdparty', 'concat:plugins', 'concat:fb_plugins', 'uglify:fb', 'uglify:plugins', 'uglify:fb_plugins', 'uglify:thirdparty', 'string-replace:css' ]);
};
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<link href="css/freeboard.min.css" rel="stylesheet" />
<script src="js/freeboard.thirdparty.min.js"></script>
<script type="text/javascript">
head.js("js/freeboard+plugins.min.js",
head.js("js/freeboard_plugins.min.js",
// *** Load more plugins here ***
function(){
$(function()
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 6884d70

Please sign in to comment.