Tom Kirkpatrick

Results 60 comments of Tom Kirkpatrick

Also hitting this trying to use env vars to make a workflow job name dynamic. Can't do this: ``` jobs: build: name: Deploy to ${{ env.GITHUB_REF_NAME }} ``` But can...

Note, is is actually possible if you define serve target like this: ```js "serve": { "targetName": "serve", "dependsOn": [], "cache": false, "options": { "watch": false, "configuration": "Debug", "no-build": true },...

Problem is though, that previously we could use noBuild option to prevent build happening prior to running the tests. But now there is no way to do that since the...

I think the slowness issue is this https://github.com/nrwl/nx/issues/19627. Setting `NX_DAEMON=false` gets the cache processing back to a reasonable speed (improves by a couple of orders of magnitude)

>Yeah, you can do it in a container Are there any instructions for how to do this? I'd like to build a devcontainer for use with VS Code on a...

This can happen if you are using babel-node to stat your server (via the cmd option). `npm install kexec` makes it work. See https://github.com/foreverjs/forever/issues/687 for reference.

Also still seeing this issue with the latest release.

We ran into this issue too. It’s one of the reasons why I created the fee estimator project which I discuss in https://strike.me/blog/blended-bitcoin-fee-estimations/ and built it out to have multiple...

I've created an updated version of https://github.com/fullcube/loopback-ds-readonly-mixin/ that I believe addresses this issue. In this, updates to existing properties that are marked as readonly will retain their existing values on...