jmjf
jmjf
I should probably note that this also provides a simple solution for this issue. https://github.com/obenland/the-bootstrap/issues/11
So, sounds like the guidance for now is one or more of: * Pause queues unless actively processing and monitoring them (reduce risk of contention). * Move the shoko config...
Another workaround option. Create the shoko config directory on a different device that is low risk for i/o contention. On the device you want to expose the directory `ln -s...
Is this a `pino` configuration issue? ```javascript const pino = require('pino'); const transport = pino.transport({ targets: [ { level: 'trace', target: 'pino-pretty', }, { level: 'trace', target: 'pino/file', destination: 1,...
You have to tell `pino-pretty` about the custom level. From the command line, -x; programmatically, the `customLevels` option, per the config docs in the readme. On Mon, Nov 13, 2023,...
Looking at this, it seems like changes from 0.0.4 vs master. I'm guessing Aurelia, being pre-beta, is evolving faster than developers can release updates to address breaking API changes. The...
Followup: Using Skeleton 0.19.0 instead of 0.20.0 looks like it will solve the problems, maybe. I'm down to an issue with aurelia-http-client: ``` Unhandled promise rejection TypeError: _this.XHRType is not...
After further research, aurelia-templating 0.17.0 removes `viewSlot.swap()`. See [this blog post](http://blog.durandal.io/2015/11/10/aurelia-pre-beta-release/) and [this commit](https://github.com/aurelia/templating/commit/64160e357cc94f557cd9428874a4bc2a723373ea). Apparently, no one uses `viewSlot.swap()`... except aurelia-bs-grid (oops). So I copied the `viewSlot.swap()` code and worked...
The skeleton-0.20.0 branch of [https://github.com/jmjf/aurelia-bs-grid/tree/skeleton-0.20.0](https://github.com/jmjf/aurelia-bs-grid/tree/skeleton-0.20.0) is fixed for skeleton 0.20.0, I think. After updating the dependencies, there were three breaking API changes between skeleton 0.19.0 and 0.20.0. I fixed the...
TL:DR; Use a [namespace](https://github.com/fastify/fastify-jwt/tree/master?tab=readme-ov-file#namespace). ```javascript const fastify = Fastify() fastify.register(jwt, options) fastify.register(jwt, { ...options, secret: 'something-else', namespace: 'refresh' }); fastify.post('/sign', async function (request, reply) { const { token, refreshToken }...