()
| 24 | var lowercaseAppName = 'rainbow'; |
| 25 | |
| 26 | function _getDestinationPath() { |
| 27 | if (argv.release) { |
| 28 | destination = 'dist/' + lowercaseAppName + '.min.js'; |
| 29 | return destination; |
| 30 | } |
| 31 | |
| 32 | var destination = 'dist/' + lowercaseAppName + '.js'; |
| 33 | if (argv.custom) { |
| 34 | destination = 'dist/' + lowercaseAppName + '-custom.min.js'; |
| 35 | } |
| 36 | |
| 37 | return destination; |
| 38 | } |
| 39 | |
| 40 | gulp.task('pack', function() { |
| 41 | var plugins = [ |
no outgoing calls
no test coverage detected