Skip to content

Commit d6468e5

Browse files
author
Ives van Hoorne
committed
Clean up build
1 parent 9e70385 commit d6468e5

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

packages/sandpack/gulpfile.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
const gulp = require('gulp');
22

33
gulp.task('copy-sandbox', () =>
4-
gulp.src('../app/www/**/*.*').pipe(gulp.dest('./sandpack/'))
4+
gulp
5+
.src([
6+
'../app/www/**/*.*',
7+
'!../app/www/**/*.map',
8+
'!../app/www/stats.json',
9+
'!../app/www/public/**/*.*',
10+
])
11+
.pipe(gulp.dest('./sandpack/'))
512
);

0 commit comments

Comments
 (0)