Marvin Hagemeister

Results 233 issues of Marvin Hagemeister

From discord: https://discord.com/channels/684898665143206084/684898665151594506/1296115163145179239 Add support for autocompleting lint rules in `deno.json`. The rules in our config schema are currently typed as `"string"`: https://github.com/denoland/deno/blob/f94cdd1723ebfed265c17fb4def13c9ce17c3e06/cli/schemas/config-file.v1.json#L294

suggestion
config
lint

This PR fixes the issue where mapped specifiers in a workspace member would never be found. Only mapped paths from the workspace root would resolve. This was caused by always...

### Discussed in https://github.com/denoland/deno/discussions/26384 Originally posted by **idleberg** October 18, 2024 Using Deno 2.0, I'm trying to install packages from a private NPM registry (AWS CodeArtifact). I don't think I...

bug
install

Just a test to see if it affects performance.

This PR fixes the debug tests and a few compat ones. Got the total failure count down to 5. The remaining failures are all for `forwardRef` and it seems like...

### Discussed in https://github.com/denoland/deno/discussions/23255 Originally posted by **babakfp** April 6, 2024 Hi 👋 https://github.com/parcel-bundler/lightningcss/discussions/712 Based on this comment https://github.com/parcel-bundler/lightningcss/discussions/712#discussioncomment-9029656 and this: ![Screenshot 2024-04-06 223807](https://github.com/denoland/deno/assets/44144724/d10c2985-f70a-489e-9ffd-11f9157b20e3) (I used this library https://deno.land/x/[email protected] and...

feat
compile
node compat
node native extension

We weren't passing the resolved npmrc settings to the install commands. This lead us to always fall back to the default registry url instead of using the one from npmrc....

Looks like chrome changed something in relation to the DevTools bridge again. ## Steps to reproduce 1. Run `deno init` 2. Run `deno run --inspect-brk main.ts` 3. Go to `chrome://inspect`...

bug
debugger

The `deno fmt` command has a `--unstable-component` flag. That can't be added to the `unstable` property in `deno.json`. Related: I'm kinda wondering when we should mark these as stable and...

bug

Spend some time stepping through the npm client code and noticed that the bearer token was different from ours. They do some double encoding and @dsherret helped me in matching...