Skip to content

Commit 8f6d15c

Browse files
committed
add jqlight to grunt minification
1 parent 3f1d2ae commit 8f6d15c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Gruntfile.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ module.exports = function (grunt) {
5353
dest: 'dist/jquery.<%= pkg.name %>.extra.js'
5454
},
5555

56+
jqlight: {
57+
src: ['src/jqlight.<%= pkg.name %>.js'],
58+
dest: 'dist/jqlight.<%= pkg.name %>.js'
59+
},
60+
5661
autoload: {
5762
src: ['src/jquery.<%= pkg.name %>.autoload.js'],
5863
dest: 'dist/jquery.<%= pkg.name %>.autoload.js'
@@ -108,6 +113,11 @@ module.exports = function (grunt) {
108113
dest: 'dist/jquery.<%= pkg.name %>.extra.min.js'
109114
},
110115

116+
jqlight: {
117+
src: '<%= concat.jqlight.dest %>',
118+
dest: 'dist/jqlight.<%= pkg.name %>.min.js'
119+
},
120+
111121
autoload: {
112122
src: '<%= concat.autoload.dest %>',
113123
dest: 'dist/jquery.<%= pkg.name %>.autoload.min.js'

0 commit comments

Comments
 (0)