File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,8 @@ module.exports = function(grunt) {
37
37
copy : {
38
38
dist : {
39
39
files : {
40
- 'dist/gridstack.js' : [ 'src/gridstack.js' ]
40
+ 'dist/gridstack.js' : [ 'src/gridstack.js' ] ,
41
+ 'dist/gridstack.jQueryUI.js' : [ 'src/gridstack.jQueryUI.js' ] ,
41
42
}
42
43
}
43
44
} ,
@@ -50,7 +51,9 @@ module.exports = function(grunt) {
50
51
} ,
51
52
dist : {
52
53
files : {
53
- 'dist/gridstack.min.js' : [ 'src/gridstack.js' ]
54
+ 'dist/gridstack.min.js' : [ 'src/gridstack.js' ] ,
55
+ 'dist/gridstack.jQueryUI.js' : [ 'src/gridstack.jQueryUI.js' ] ,
56
+ 'dist/gridstack.all.js' : [ 'src/gridstack.js' , 'src/gridstack.jQueryUI.js' ]
54
57
}
55
58
}
56
59
} ,
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ module.exports = function(config) {
19
19
'bower_components/jquery-ui/jquery-ui.min.js' ,
20
20
'bower_components/lodash/dist/lodash.min.js' ,
21
21
'src/gridstack.js' ,
22
+ 'src/gridstack.jQueryUI.js' ,
22
23
'spec/*-spec.js'
23
24
] ,
24
25
@@ -31,7 +32,8 @@ module.exports = function(config) {
31
32
// preprocess matching files before serving them to the browser
32
33
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
33
34
preprocessors : {
34
- 'src/gridstack.js' : [ 'coverage' ]
35
+ 'src/gridstack.js' : [ 'coverage' ] ,
36
+ 'src/gridstack.jQueryUI.js' : [ 'coverage' ] ,
35
37
} ,
36
38
37
39
You can’t perform that action at this time.
0 commit comments