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 11module . exports = function ( grunt ) {
22
3+ var pkg = require ( "../../package.json" ) ;
4+
35// Ci is a magic task that changes based on options we do this to optimize travis build
46grunt . registerTask ( "ci" , [ "ci:" + ( grunt . option ( "citype" ) || process . env . CITYPE ) ] ) ;
57grunt . registerTask ( "ci:demos" , [ "test:demos" ] ) ;
Original file line number Diff line number Diff line change @@ -316,7 +316,7 @@ return {
316316 files : [ {
317317 expand : true ,
318318 cwd : "<%= dist %>" ,
319- src : "<%= files.cdn %>" ,
319+ src : files . cdn ,
320320 dest : "<%= dirs.cdn.jquery %>/"
321321 } ]
322322 } ,
@@ -339,7 +339,7 @@ return {
339339
340340 // WARNING: This will be modified by the config:copy:noversion task
341341 cwd : "<%= dist %>" ,
342- src : "<%= files.cdn %>" ,
342+ src : files ,
343343 dest : "<%= dirs.tmp %>"
344344 }
345345 } ,
@@ -360,7 +360,7 @@ return {
360360
361361 // WARNING: This will be modified by the config:copy:git task
362362 cwd : "<%= dist %>" ,
363- src : "<%= files.cdn %>" ,
363+ src : files ,
364364 dest : "<%= dirs.cdn.git %>"
365365 }
366366 }
You can’t perform that action at this time.
0 commit comments