Vaughan Rouesnel
Vaughan Rouesnel
https://github.com/avajs/ava/blob/c41b2afc201118bfdc4d2039180ae2ddd0f697c9/lib/assert.js#L318 If I add a `console.error('ava error', err)` before that line I get: ``` ava error { [ChecksumError: Checksum mismatch] name: 'ChecksumError', snapPath: '/Users/Vaughan/Library/Caches/IntelliJIdea2017.3/wallaby/projects/c682bc127da20367/instrumented/packages/intranav-protocol/test/snapshots/index.test.js.snap' } ``` This error is not...
`pnpm list --depth 99` is very slow, and sometimes crashes due to `JavaScript heap out of memory`. ### pnpm version: 6.6.2 ### Code to reproduce the issue: Run on a...
When running `pnpm install` in a preinstall script, the summary output is printed one after the other: ``` > [email protected] preinstall /Users/Vaughan/dev-live/photo-booth-ios-crna > test -d pnpmfile/node_modules || pnpm install --prefix=pnpmfile...
Missing `React.lazy` import. https://github.com/module-federation/module-federation-examples/blob/7fc92f8f7678a7af76f925b9d5d1d03eb472109e/advanced-api/dynamic-remotes-runtime-environment-variables/host/src/hooks/useFederatedComponent.js#L31
What version of node do you use? I encountered an error when using [email protected]. ``` $ yarn start db.seed dyld: lazy symbol binding failed: Symbol not found: __ZN4node19GetCurrentEventLoopEPN2v87IsolateE Referenced from:...
``` /xxx/w3tec-boilerplate/src/api/models/User.ts:2:25 - error TS2307: Cannot find module 'class-transformer'. 2 import { Exclude } from 'class-transformer'; ~~~~~~~~~~~~~~~~~~~ ```
I already have a lot of middleware in Koa that I want to port. How difficult would it be to add Koa support?
My menubar is full. Even with "menubar mode" turned off it still appears up there. It should not force an icon up there.
If you call `ctx.res.end()` in your middleware chain, then you will get a `Can't set headers after they are sent.`, because ‘autoCommit’ attempts to set cookie header on the koa...
Cookies are cleared by `ContextSession#commit()` if `ContextSession#session` is `false`. For `ContextSession#session` to become `false` using the public api, you must use the setter `ctx.session = null`. But, then when you...