You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

copy.js 474B

12345678910111213
  1. var gulp = require("gulp"),
  2. copyTask = function(cb) {
  3. gulp.src("node_modules/bootstrap/less/**/*")
  4. .pipe(gulp.dest("src/oscar/static/oscar/less/bootstrap3"));
  5. gulp.src("node_modules/bootstrap/dist/js/bootstrap.min.js")
  6. .pipe(gulp.dest("src/oscar/static/oscar/js/bootstrap3"));
  7. gulp.src("node_modules/bootstrap/fonts/*")
  8. .pipe(gulp.dest("src/oscar/static/oscar/fonts/"));
  9. };
  10. gulp.task("copy", copyTask);