From 37086fde1978555bd59669e3dcf93337f5f232cc Mon Sep 17 00:00:00 2001 From: lilia Date: Wed, 20 May 2015 14:24:25 -0700 Subject: [PATCH] Modify default grunt task to include copy --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 00bb8911a..7a05272e7 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -246,7 +246,7 @@ module.exports = function(grunt) { grunt.registerTask('dev', ['connect', 'watch', 'sass']); grunt.registerTask('test', ['jshint', 'jscs', 'connect', 'saucelabs-mocha']); - grunt.registerTask('default', ['preen', 'concat', 'sass']); + grunt.registerTask('default', ['preen', 'concat', 'sass', 'copy']); grunt.registerTask('build', ['compile', 'concat:curve25519', 'concat:libtextsecure']); };