faucet-pipeline / faucet-pipeline-static

faucet-pipeline for static files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

watch mode ignores file changes

FND opened this issue Β· comments

commented

false alarm: I had misconfigured watchDirs 😳 πŸ¦†


    static: [{
        source: "./assets",
        target: "./dist"
    }]
    static: [{
        source: "./assets/lipsum.txt",
        target: "./dist/lipsum.txt"
    }]

with either of those confgurations (i.e. both directory and file references), after successfully copying ./assets/lipsum.txt on startup (faucet --watch), subsequent changes to that file do not result in it being copied anew

😢