From cc5e7556d3562f72212fd54b763190207efa3cf3 Mon Sep 17 00:00:00 2001 From: Glen Reesor Date: Tue, 25 Jul 2017 19:33:27 -0600 Subject: [PATCH] Copy LICENSE.txt to output folders --- gulpfile.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index 9423793..4c02dc3 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -95,6 +95,13 @@ gulp.task('fast', function() { .pipe(gulp.dest(debugDir + '/maps/prod')) .pipe(gulp.dest(productionDir + '/maps/prod')); + //-------------------------------------------------------------------------- + // License file + //-------------------------------------------------------------------------- + result = gulp.src('LICENSE.txt') + .pipe(gulp.dest(debugDir)) + .pipe(gulp.dest(productionDir)); + //-------------------------------------------------------------------------- // embeddingSample Pre-Loaded Maps //--------------------------------------------------------------------------