how to apply `ignore` in source filter?
I have a python project using task, and I try to use
--watch
to restart my application. I'm using sources: ['**/*.py']
and this would include .venv
dir, which is third part library lives. Is there a way to exclude this from source?Default to $GOARCH
Seems like a daft question: How can I pass a custom arch to a task but have that task default to $GOARCH?
I've tried:
```go
build:...
Bizarre build error
Had someone send over an issue stating the task module was failing to build on Linux. Works fine on Windows. The error is:
```
light@pc:~/repos/wails/v3/cmd/wails3$ go install
go: downloading github.com/go-task/task/v3 v3.31.0...
Embedding the CLI
I'm looking at using task as the main task orchestrator for Wails v3. I've been looking at the options for
task.Executor
and have something reasonable up and running. Ideally, I'd like to give Wails users the full power of the task CLI so have looked at what it might mean to "pass through" the cli args to the current task cli main method. The only issues I can see are an internal logger package and tricking Cobra into trimming the first arg out.
So the options seem to be:
1. Hack the current task cli main method so I can call it with pass through args...generates directive on `node_modules` directory
I'm trying to work out how to run
npm install
but only when the following is true: package.json
has been updated OR node_modules
directory doesn't exist.
I can make the first condition work but not both. Many thanks!...