Fix style issues
This commit is contained in:
parent
9c9504363d
commit
b0d029e07f
10
gulpfile.ts
10
gulpfile.ts
|
@ -140,25 +140,25 @@ export let Watch: TaskFunction = async (): Promise<void> =>
|
|||
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<void> =>
|
|||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue