cms/gulpfile.js
author ymh <ymh.work@gmail.com>
Fri, 05 Feb 2016 17:01:09 +0100
changeset 117 7abc74acf392
parent 14 10f67f0281e1
child 346 4cd0f8c936ed
permissions -rw-r--r--
When merging ore:aggregation, process the license correctly, if different or null, the default is use, if the same, this is the value used

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'));
});