From a0e4f11b9c0777a60a8f686d7a745e11e482ba0b Mon Sep 17 00:00:00 2001 From: Mike Ryan Date: Wed, 4 Nov 2015 07:53:28 -0600 Subject: [PATCH] chore(build): Moving README.md to dist folder --- gulpfile.babel.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gulpfile.babel.js b/gulpfile.babel.js index 2eda74b..d30fe17 100644 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -115,7 +115,11 @@ async function cleanupDistFolder(){ } function createPackage(){ - return gulp.src(['./package.json', './build/**.js']) + return gulp.src([ + './package.json', + './build/**.js', + './README.md' + ]) .pipe(gulp.dest('./dist')); }