File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ function compileJs(watch) {
41
41
. pipe ( gulp . dest ( './build/js' ) ) ;
42
42
}
43
43
44
+
44
45
if ( watch ) {
45
46
bundler . on ( 'update' , function ( ) {
46
47
rebundle ( ) ;
@@ -90,7 +91,7 @@ gulp.task('watch-sass', function () {
90
91
} ) ;
91
92
92
93
gulp . task ( 'copy-assets' , function ( ) {
93
- return gulp . src ( staticAssets , { base : './' } )
94
+ return gulp . src ( staticAssets , { base : './' , dot : true } )
94
95
. pipe ( gulp . dest ( 'build/' ) ) ;
95
96
} ) ;
96
97
@@ -143,7 +144,8 @@ gulp.task('clean-post-build', function () {
143
144
'./build/js/index.template.js' ,
144
145
'./build/js/scripts.min.js.map' ,
145
146
'./build/js/checkSupport.template.js' ,
146
- './build/js/analytics.template.js'
147
+ './build/js/analytics.template.js' ,
148
+ './build/assets/spinner*.gif'
147
149
] , { read : false } )
148
150
. pipe ( rimraf ( ) ) ;
149
151
} ) ;
You can’t perform that action at this time.
0 commit comments