Also check in sourcemaps

The .js.map files generated by buildCompressed, buildBlocks etc. were
not being copied back by checkinBuilt.
This commit is contained in:
Christopher Allen
2021-07-07 15:36:39 +01:00
parent c265eb87b5
commit e6929decde

View File

@@ -547,7 +547,9 @@ const build = gulp.parallel(
function checkinBuilt() {
return gulp.src([
`${BUILD_DIR}/**.js`,
`${BUILD_DIR}/**.js.map`,
`${BUILD_DIR}/**/**.js`,
`${BUILD_DIR}/**/**.js.map`,
]).pipe(gulp.dest('.'));
};