assemble / assemble-workshop

Recipes how to use assemble (v0.12.0+)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

recipe: "browser-sync"

webpomer opened this issue · comments

Hello Stefan,
firstly, I just have to say how awesome your recipes are.

I've found an issue:

In your recipe "browser-sync" you use in the index.js - file:

app.watch( './content/*/.md', ['content']);

I think you have to create a task:

app.task('watch', function() {
app.watch( path.join( __dirname, './content/*
/.md' ), ['content'] );
});

Greetings from Jena,

Robert

@webpomer Thanks for the issue! If you're reporting a bug, please be sure to include:

  • The version of assemble you are using.
  • Your assemblefile.js (This can be in a gist)
  • The commandline output. (Screenshot or gist is fine)
  • What you expected to happen instead.

Thx, I'll have a look into it ... actually this is the only recipe without full test-coverage ;-)