This is a major step forwards towards a better configuration-as-code ecosystem for Vercel. This initial release adds support for six settings: buildCommand, devCommand, installCommand, ignoreCommand, framework, and outputDirectory.
I find Earthly great for CI / testing, whereas Skaffold excels at running services. It turns out that they play very nicely together though. Use a custom buildCommand that calls the Earthly target rather than the regular Docker build - the best of both worlds 🎉
I imagined something like this:
apps/expo/package.json
{
scripts: {
build: "expo run:ios --configuration Release"
}
}
apps/expo/eas.json
{
cli: {
buildCommand: "cd ../.. && turbo run build <etc>"
}
}
(I'm not sure what the actual build script you do on EAs is)
Seems a bit weird, but part of the build step is a second npm install for the dev deps:
npm install --also=dev && buildCommand
I don't think that takes advantage of the node module caching that these services use, but Ill see if that is an issue or not
He sells the service of risk management. Why an “expert” risk manager with “signals” needs $2mm of our tax dollars to keep his doors open is fair game. And if he didn’t need the $, then he defrauded the govnt and cruelly denied another small biz from getting it who needed it.
Keith truly understands liquidity crunches. He needed 2 million of our tax dollars to keep his doors open. I guess the quads and his signals missed that one #PPP#riskmanagementfederalpay.org/paycheck-prot…
Wait until you find out how good the other analysts are, too. Hedgeye should really commission an ad along the lines of that cosmetics company - but featuring a hedge fund manager flicking his hair, saying : "because they're worth it..."
Here is my thing. I started with Real Time Alerts then the Macro Show then The Call and then Investing Ideas then I said the hell with it and Subscribed to Risk Manager and now thinking about bolting on Freebird after his NFLX call. He is like Rambo. He's a killer
We currently do the bundling and the packaging of the library, but it would be interesting if there's a way for pulling built artifacts. It can already be done in a hacky way by changing the buildCommand to fetch the artifacts instead.
It doesn't transparently unpack it. It looks like setting 'buildCommand' makes it the only build phase and there is no unpackPhase: github.com/NixOS/nixpkgs/blo…