Arpad Borsos
Arpad Borsos
When I’m using source maps in the css loader (`css-loader?sourceMap`), I get paths like this: `webpack:///./css/index.css` But when I add the cssnext loader (`css-loader?sourceMap!cssnext-loader`) the sourcemap paths get all wrong:...
We have a pre-commit hook that runs `tslint --fix`, but with a recent update of this plugin that does auto-fixing for `no-unnecessary-else`, it generates *really* strange code, most likely because...
Turns out, a PE file can have more than one ImageDebugDirectory. Thus far, goblin only looks at the very first one, trying to interpret it as a CV record. This...
I get a ton of JS warnings on the console, like: ``` JavaScript strict warning: http://localhost:57698/mocha.js, line 4811: anonymous function does not always return a value JavaScript warning: http://localhost:57698/build.js, line...
First off, I really love the fluent syntax so far (even though I have not used it in production yet) compared to MessageFormat. I also really like the idea of...
## Bug Report ### Version 0.1.29 ### Description I have recently experimented with various lazy/non-lazy `fn() -> impl Future` code, as there are subtle differences that can break other code....
### Summary Trying to cast an `anyhow::Error` to a `std::error::Error` via `let stderr: &dyn std::error::Error = &*err;` is being wrongly flagged. The provided suggestion does not work, neither does a...
When using `import` to import this polyfill, or when it is done transitively via a dependency that I `import`, the "reflect-metadata" polyfill does not work correctly. ```sh > npm i...
We are currently evaluating using `tsconfig-paths/register` together with `@babel/register` for a pretty large, mostly js project (slowly migrating to ts) I have found that both of these register hooks have...
As the title says, `cargo generate-lockfile` is being called unconditionally here: https://github.com/fossas/fossa-cli/blob/bde67a0157b8b8b8472056bea843a30d4e495271/src/Strategy/Cargo.hs#L317 We have a project that already maintains a lockfile, and that lockfile has a specific git commit for...