mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-30 03:51:21 -05:00
2ab4ee8bf4
and var -> const in zunder-related files
15 lines
426 B
JavaScript
15 lines
426 B
JavaScript
const gulp = require('gulp')
|
|
const concat = require('gulp-concat')
|
|
|
|
module.exports = function copyScripts (dir) {
|
|
return function () {
|
|
return gulp.src([
|
|
'node_modules/jquery/dist/jquery.js',
|
|
'node_modules/bootstrap-sass/assets/javascripts/bootstrap/dropdown.js',
|
|
'node_modules/bootstrap-sass/assets/javascripts/bootstrap/alert.js',
|
|
])
|
|
.pipe(concat('vendor.js'))
|
|
.pipe(gulp.dest(dir))
|
|
}
|
|
}
|