Skip to content

Commit

Permalink
Require a single grunt task for packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
jmillan committed Jan 17, 2013
1 parent 5ce07e6 commit 3f86b94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
3 changes: 1 addition & 2 deletions grunt.js
Original file line number Diff line number Diff line change
Expand Up @@ -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' );
};

0 comments on commit 3f86b94

Please sign in to comment.