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

Commit 5092cdd

Browse files
committed
Minified bundle was not present after running.
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.
1 parent 62f353b commit 5092cdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Gruntfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,6 @@ module.exports = function(grunt) {
321321
'minidist', 'uglify:dist', 'usebanner:dist'
322322
]);
323323
grunt.registerTask('release', [
324-
'test', 'dist', 'demo', 'clean:interactive'
324+
'test', 'demo', 'dist', 'clean:interactive'
325325
]);
326326
};

0 commit comments

Comments
 (0)