aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.babel.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-01-03 23:33:37 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-01-03 23:33:37 +0100
commitf01cf3540a6fc9aab2158b06f23d510c4efc73ce (patch)
tree174bb36dd15b765d38061aa76b00462167241f42 /gulpfile.babel.js
parenttry ci with lerna (diff)
downloadferdium-app-f01cf3540a6fc9aab2158b06f23d510c4efc73ce.tar.gz
ferdium-app-f01cf3540a6fc9aab2158b06f23d510c4efc73ce.tar.zst
ferdium-app-f01cf3540a6fc9aab2158b06f23d510c4efc73ce.zip
Fix missing packages in build
Diffstat (limited to 'gulpfile.babel.js')
-rw-r--r--gulpfile.babel.js11
1 files changed, 10 insertions, 1 deletions
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() {
90 .pipe(gulp.dest(paths.dest)); 90 .pipe(gulp.dest(paths.dest));
91} 91}
92 92
93export function mvPackages() {
94 return gulp.src(
95 [
96 'packages/**',
97 ],
98 )
99 .pipe(gulp.dest(`${paths.dest}/packages`));
100}
101
93export function html() { 102export function html() {
94 return gulp.src(paths.html.src, { since: gulp.lastRun(html) }) 103 return gulp.src(paths.html.src, { since: gulp.lastRun(html) })
95 .pipe(gulp.dest(paths.html.dest)); 104 .pipe(gulp.dest(paths.html.dest));
@@ -161,7 +170,7 @@ export function sign(done) {
161 170
162const build = gulp.series( 171const build = gulp.series(
163 clean, 172 clean,
164 gulp.parallel(mvSrc, mvPackageJson), 173 gulp.parallel(mvSrc, mvPackageJson, mvPackages),
165 gulp.parallel(html, scripts, styles), 174 gulp.parallel(html, scripts, styles),
166 dictionaries, 175 dictionaries,
167); 176);