Skip to content

Commit 7d342b4

Browse files
committed
build a concated js file
1 parent af2b5a3 commit 7d342b4

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Gruntfile.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,12 @@ module.exports = function(grunt) {
2424
uglify: {
2525
dist: {
2626
files: {
27-
'dist/jquery.annotate.min.js': ['js/jquery.annotate.js']
27+
'dist/jquery.annotate.min.js': ['js/jquery.annotate.js'],
28+
'dist/jquery.annotate.concat.min.js': [
29+
'dist/jquery.min.js',
30+
'dist/query-ui.min.js',
31+
'js/jquery.annotate.js'
32+
]
2833
}
2934
}
3035
}

0 commit comments

Comments
 (0)