Vaughan Rouesnel

Results 215 comments of Vaughan Rouesnel
trafficstars

A simple fix would be exposing `Logger`. ``` import Logger from '@pollyjs/core/src/-private/logger.js' const myLogger = new Logger(Polly) ``` This doesn't work at the moment unless you transpile `logger.js`. --- #...

I want to be able to see only when something is being replayed/recorded - not the full logs.

Any progress on this? I just want to be able to always cache a response...is there any hook I can use to do this?

## Workaround Quick and dirty. Take the `k`th point of `n / width`. ```js asciichart.plot([sampleData(a.data, width)]) function sampleData(oldArr, width) { const factor = Math.round(oldArr.length / width) return oldArr.filter(function (value, index,...

Same. See #142 for a more detailed error log.

EDIT: Already fixed in master. While examining the stack trace, the issue is caused because when the `sequelize-typescript#Model` import is loaded, it scans all property names on the `Sequelize#Model` class...

You can use `@vjpr/sequelize-typescript@^1.1.0-vjpr.0` if you want to work with sequelize@6. When using pnpm you can simply do: _package.json_ ``` "sequelize-typescript": "npm:@vjpr/sequelize-typescript@^1.1.0-vjpr.0" ``` It's already fixed in master as mentioned...

Would be nice to have the operands hoverable as well. ``` mov rbp, rsp ^^^ Frame pointer - blah blah blah ```

> @ljharb Typically this is something each individual proposal should be tracking on its own repo. This is the idea behind this issue. It links to tracking issues in other...

Firstly, a big advantage of monorepos is atomic commits (having one commit update multiple packages). For this reason, placing the affected packages inside the first commit line is untenable. In...