We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e70385 commit d6468e5Copy full SHA for d6468e5
packages/sandpack/gulpfile.js
@@ -1,5 +1,12 @@
1
const gulp = require('gulp');
2
3
gulp.task('copy-sandbox', () =>
4
- gulp.src('../app/www/**/*.*').pipe(gulp.dest('./sandpack/'))
+ 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/'))
12
);
0 commit comments