new Deno.Command(Deno.execPath(), {args:["run", "-A", "npm:tailwindcss", "-i", "./styles.css", "-o", "./public/styles.css", "--watch"]})new Deno.Command(Deno.execPath(), {args:["run", "-A", "npm:tailwindcss", "-i", "./styles.css", "-o", "./public/styles.css", "--watch"]}), no watching happens and the output file doesn't get updated. The npm package running doesn't seem to get the watch argument or the output anymore.npx tailwindcss -i ./styles.css -o ./public/styles.css --watchnpx tailwindcss -i ./styles.css -o ./public/styles.css --watch, It updates the file and watches for changes based on the tailwind.config.jstailwind.config.js. Is this expected or am I doing something wrong? I'm just trying to spawn a process to do the same as npx. Should I just use "npx""npx" instead of Deno.execPath()Deno.execPath()?Join the Discord to ask follow-up questions and connect with the community