This repository was archived by the owner on Oct 8, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
module . exports = function ( grunt ) {
2
2
3
+ var pkg = require ( "../../package.json" ) ;
4
+
3
5
// Ci is a magic task that changes based on options we do this to optimize travis build
4
6
grunt . registerTask ( "ci" , [ "ci:" + ( grunt . option ( "citype" ) || process . env . CITYPE ) ] ) ;
5
7
grunt . registerTask ( "ci:demos" , [ "test:demos" ] ) ;
Original file line number Diff line number Diff line change @@ -316,7 +316,7 @@ return {
316
316
files : [ {
317
317
expand : true ,
318
318
cwd : "<%= dist %>" ,
319
- src : "<%= files.cdn %>" ,
319
+ src : files . cdn ,
320
320
dest : "<%= dirs.cdn.jquery %>/"
321
321
} ]
322
322
} ,
@@ -339,7 +339,7 @@ return {
339
339
340
340
// WARNING: This will be modified by the config:copy:noversion task
341
341
cwd : "<%= dist %>" ,
342
- src : "<%= files.cdn %>" ,
342
+ src : files ,
343
343
dest : "<%= dirs.tmp %>"
344
344
}
345
345
} ,
@@ -360,7 +360,7 @@ return {
360
360
361
361
// WARNING: This will be modified by the config:copy:git task
362
362
cwd : "<%= dist %>" ,
363
- src : "<%= files.cdn %>" ,
363
+ src : files ,
364
364
dest : "<%= dirs.cdn.git %>"
365
365
}
366
366
}
You can’t perform that action at this time.
0 commit comments