Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
gulp.task('task:service-worker', () => gulp
.src('ngsw-manifest.json')
.pipe(gulpAddStaticFiles(gulp.src([
'dist/**/*.*'
]), {manifestKey: 'static'}))
.pipe(gulp.dest('dist'))
);
gulp.task('task:service-worker', function () { return gulp
.src('ngsw-manifest.json')
.pipe(build_1.gulpAddStaticFiles(gulp.src([
'dist/**/*.*'
]), { manifestKey: 'static' }))
.pipe(gulp.dest('dist')); });
gulp.task('connect', function () {