Matthew Dzaman

Results 3 comments of Matthew Dzaman

Hi @MurrayBelaireHigh, thanks for your question! Hopefully I can get this working for you. The tool relies on closed captions that Google Meet provides in the meeting. That means if...

The issue is that `tailwind-react-ui` expects Tailwind 1 and the color naming convention [changed](https://blog.tailwindcss.com/tailwindcss-v2) in Tailwind 2. The colors in this library use `--` (e.g. `bg-red-darker`) and in Tailwind 2,...

While you can make multiple concurrent calls to `sh` with the `async` flag, I use [`concurrently`](https://www.npmjs.com/package/concurrently) for this: ``` const buildCommands = PROJECTS.map((project) => { return { name: project.name, command:...