CompileDaemon icon indicating copy to clipboard operation
CompileDaemon copied to clipboard

include multiple directories

Open CyberDruga opened this issue 4 years ago • 2 comments

The project I'm working on has important files two folders back from where the main.go file is, so it would be nice to have something like -include-dir="../../core" to be able to monitor any changes on these files as well, since we work with them a lot.

CyberDruga avatar Oct 04 '21 19:10 CyberDruga

Such a feature is really needed.

I've tried another workaround using a folder symlink, but as i saw later in the docs filepath.WalkDir does not follow symbolic links. By the way, if someone is interested in setting -directory= to a folder symlink, it will work as expected.

At the moment, I solved my problem with nodemon (requires node.js & npm):

#!/bin/bash
nodemon \
    -e go \
    --watch . \
    --watch "../../core" \
    --exec "go run ."

reves avatar Oct 29 '22 02:10 reves

Have you tried passing multiple -directory parameters?

githubnemo avatar Oct 29 '22 07:10 githubnemo