Results 107 comments of Ian Wright
trafficstars

@jaredpalmer I just tried that, and unfortunately it doesn't work either (though I was using `^dev` to keep the watch mode). The concurrency is going to max out at 2...

You're welcome to use https://github.com/IPWright83/pnpm-monorepo as another example if needed. Requires pnpm, but using `pnpm run dev_ideal` illustrates the issue. I've added a `dev` script that also does a build...

I fixed by doing a build first (that does exit) followed by a build-watch. Then you know all the dependencies should be ready

@codepunkt what tech are you using here, as this is working for me... ![image](https://user-images.githubusercontent.com/1374775/178985833-2584c3d8-0882-4308-853c-c73855f78d04.png) If I update `@iw/log` then `@iw/title` builds and `app` refreshes correctly, logging the new output. This...

@rwieruch I think you might end up with a race (if dependencies don't build in the correct order). That's why I've opted to do a pre-build before hand.

Did anyone manage to find a way to cast both screen and audio at the same time to the same Chromecast device?

You probably want `"fix_to_stdout": true` in there too?

I'm just revisiting this, I built an example here https://ipwright83.github.io/chart-io/?path=/story/xycharts-mixedplots--mixed-stacked-column-plots and haven't yet managed to crack padding. If you go for the adding a constant to X, would that not...

Is there any equivalent approach for applying an interval like property in D3? I'm not using Plot, but I might look at the source for some inspiration. A band scale...

Thanks @Fil, I'll see if I can apply that to my band scale somehow (and also try some padding on a linear scale) and share my results.