Here's my metalsmith pipeline:
metalsmith(__dirname)
.use(markdown())
.use(prism())
.use(metadata())
.use(permalinks())
.use(inplace())
.use(layouts())
.use(assets())
.use(sass())
.use(prefix())
.use(uglify())
.use(browsersync(files: [
"layouts/**/*",
"pages/**/*",
"assets/**/*"
]))
.build();
Any ideas? Do I need to be running browsersync in a separate pipeline branch or something?
Also, I'm not getting any file change logs, just the reload:
