From f01cf3540a6fc9aab2158b06f23d510c4efc73ce Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Thu, 3 Jan 2019 23:33:37 +0100 Subject: Fix missing packages in build --- gulpfile.babel.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/gulpfile.babel.js b/gulpfile.babel.js index ae7002eb2..aef96b4e4 100644 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -90,6 +90,15 @@ export function mvPackageJson() { .pipe(gulp.dest(paths.dest)); } +export function mvPackages() { + return gulp.src( + [ + 'packages/**', + ], + ) + .pipe(gulp.dest(`${paths.dest}/packages`)); +} + export function html() { return gulp.src(paths.html.src, { since: gulp.lastRun(html) }) .pipe(gulp.dest(paths.html.dest)); @@ -161,7 +170,7 @@ export function sign(done) { const build = gulp.series( clean, - gulp.parallel(mvSrc, mvPackageJson), + gulp.parallel(mvSrc, mvPackageJson, mvPackages), gulp.parallel(html, scripts, styles), dictionaries, ); -- cgit v1.2.3-54-g00ecf