cms/gulpfile.js
author nowmad@23.1.168.192.in-addr.arpa
Wed, 20 Jan 2016 10:38:09 +0100
changeset 88 1547a32aef60
parent 14 10f67f0281e1
child 346 4cd0f8c936ed
permissions -rw-r--r--
add observable on currentItem to update the icon of the item being played

var gulp = require('gulp');

var buildFolder = 'app-client/dist';
var moduleFolder = 'corpus_module';

gulp.task('copy-module', function () {
  gulp.src(buildFolder+'/assets/**/*')
    .pipe(gulp.dest(moduleFolder+'/app-client/assets'));
  gulp.src(buildFolder+'/fonts/**/*')
    .pipe(gulp.dest(moduleFolder+'/app-client/fonts'));
  gulp.src(moduleFolder+'/**/*')
    .pipe(gulp.dest('../../../drupal-7.41/modules/corpus'));
});