Now I've switched to the symlink option by default for directories like asset or data, if there are a lot of operations on that directory, it triggers the build again. It would be useful to specify build tasks that are only one-off, to be ran once on a --watch process.
Something like...
{
"data/**/*": {
"require": {
"vendor/bin/sync": ">=1.3.0"
},
"execute": {
"command": "vendor/bin/sync",
"arguments": ["./asset", "./www/asset", "--symlink"]
},
"options": {
"run-once": true
}
}
}
"run-once": true or "repeat": "once". Something like that.
Now I've switched to the symlink option by default for directories like asset or data, if there are a lot of operations on that directory, it triggers the build again. It would be useful to specify build tasks that are only one-off, to be ran once on a
--watchprocess.Something like...
{ "data/**/*": { "require": { "vendor/bin/sync": ">=1.3.0" }, "execute": { "command": "vendor/bin/sync", "arguments": ["./asset", "./www/asset", "--symlink"] }, "options": { "run-once": true } } }"run-once": trueor"repeat": "once". Something like that.