diff --git a/gulpfile.ts b/gulpfile.ts index 2beda26..1392154 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -140,25 +140,25 @@ export let Watch: TaskFunction = async (): Promise => server: context.StaticPath(), online: false }); - + watch( context.SourcePath(context.JSDirName), series( JavaScript, BrowserSync(syncer, "*.js"))); - + watch( context.SourcePath(context.StyleDirName, "**", "*.css"), series( Styles, BrowserSync(syncer, "*.css"))); - + watch( context.SourcePath(context.AssetDirName), series( Assets, BrowserSync(syncer, join(context.AssetDirName, "**", "*")))); - + watch( context.SourcePath("**", "*.html"), series( @@ -167,4 +167,4 @@ export let Watch: TaskFunction = async (): Promise => } }); }); -} +};