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