summaryrefslogtreecommitdiff
path: root/gulpfile.ts
diff options
context:
space:
mode:
Diffstat (limited to 'gulpfile.ts')
-rw-r--r--gulpfile.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/gulpfile.ts b/gulpfile.ts
index b2956c2403..2242843db1 100644
--- a/gulpfile.ts
+++ b/gulpfile.ts
@@ -120,7 +120,7 @@ gulp.task('copy:client', () =>
])
.pipe(isProduction ? (imagemin as any)() : gutil.noop())
.pipe(rename(path => {
- path.dirname = path.dirname.replace('assets', '.');
+ path.dirname = path.dirname!.replace('assets', '.');
}))
.pipe(gulp.dest('./built/client/assets/'))
);