diff --git a/BUILDING.md b/BUILDING.md index 82ac773ae..41da6272c 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -28,7 +28,7 @@ grunt -version Finally, to get a complete version of JsSIP, type the following: ``` -grunt && grunt post +grunt ``` The built version of JsSIP will be available in the `dist/` subdirectory in both flavors: normal and minified. Both linted (with JSHint). diff --git a/grunt.js b/grunt.js index c407a0bf0..49ad363bc 100644 --- a/grunt.js +++ b/grunt.js @@ -86,6 +86,5 @@ module.exports = function(grunt) { }); // Default task. - grunt.registerTask('default', 'concat:dist lint min'); - grunt.registerTask('post', 'concat:post concat:post_min' ); + grunt.registerTask('default', 'concat:dist lint min concat:post concat:post_min' ); };