AndreKR
AndreKR
I'm quite sure that `SENTRY_URL_PREFIX` corresponds to Admin > Settings > Root URL and that must be coming from the database because during the upgrade procedure we replace the complete...
The package [`getcomposer`](https://www.npmjs.com/package/getcomposer) seems to be affected by this as well? Its `package.json` contains: ```json "bin": { "composer": "./composer.phar" } ``` ```composer.phar``` starts with: ```php #!/usr/bin/env php
I found a workaround though. If I define my script like this, it will execute correctly: ```json "scripts": { "foo": "node_modules/.bin/composer --version" } ```
Yeah, that's the workaround. I have a git dependency (`"package": "git+ssh://[email protected]/foo/bar.git"`) in my package.json and if I run `yarn install` on Windows and commit yarn.lock then I have to run...
> This problem only happens when you first time execute vite with eslint errors. Good observation! But this is per module, right? So if the first time a particular modules...
@dannysmc95 If you have a fix, even without access you could create a pull request and even publish your version. Note the there is already [a somewhat popular fork](https://github.com/nabla/vite-plugin-eslint). I...
Is this issue accepting PRs? This is a relatively simple bug. GitLab provides a UserInfo endpoint ([example](https://gitlab.com/.well-known/openid-configuration) from gitlab.com). According to the [OIDC specs](https://openid.net/specs/openid-connect-core-1_0.html#ScopeClaims), when requesting claims using scopes, >...
GitLab [will soon add](https://gitlab.com/gitlab-org/gitlab/-/issues/21560) the `email` claim to the ID token, which will make this obsolete *for GitLab*.
This issue is done, isn't it? I was able to disable the overlay with `overlay: false`: ```ts plugins: [vue(), checker({ eslint: { lintCommand: 'eslint src' }, overlay: false })], ```
Interesting idea. I actually have no idea what would happen, but I guess Traefik would just send the request to *any* of the Ingresses that have this path set? And...