Skip to content
This repository has been archived by the owner on Jul 15, 2021. It is now read-only.

Commit

Permalink
Minified bundle was not present after running.
Browse files Browse the repository at this point in the history
The grunt release task was deleting the minified parser
bundle after creating it because the demo task ran after
the dist task. This should now be fixed.
  • Loading branch information
nwronski committed Mar 24, 2016
1 parent 62f353b commit 5092cdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,6 @@ module.exports = function(grunt) {
'minidist', 'uglify:dist', 'usebanner:dist'
]);
grunt.registerTask('release', [
'test', 'dist', 'demo', 'clean:interactive'
'test', 'demo', 'dist', 'clean:interactive'
]);
};

0 comments on commit 5092cdd

Please sign in to comment.