Igor Gassmann
Igor Gassmann
@lobsterkatie, here's the link to that page: https://sentry.io/organizations/igor-gassmann-temporary/releases/aeef930315afb20193e8d1f646b13f455adef0c6/?project=6712309 > What's you use-case which needs deploys over and above releases? We're using deployments so that releases are properly tagged with an...
@lobsterkatie shouldn't the type of this issue be a bug?
@shekohex what's the recommended way to achieve this?
For those interested, here is how I instrumented `gqlgen` with Sentry: ```go gqlHandler.AroundOperations(func(ctx context.Context, next graphql.OperationHandler) graphql.ResponseHandler { oc := graphql.GetOperationContext(ctx) operationType := string(oc.Operation.Operation) hub := sentry.GetHubFromContext(ctx) if hub ==...
Commitlint uses https://github.com/davidtheclark/cosmiconfig. So configuration files such as `.commitlintrc.js` are also valid. It would be nice to also support them.
I understand. That's unfortunate, we use `.js` config files in our projects including for commitlint.
Same issue here. I can also confirm that redeploying on Vercel without the cache fixes the issue.
In the mean time, I've been disabling the build cache altogether by setting the environment variable `VERCEL_FORCE_NO_BUILD_CACHE` to `1`. However, this naturally makes our builds considerably longer.
> Just want to shout out that Webstorm 2023.2 just released and includes improved error formatting out of the box, similar to this extension. > > [jetbrains.com/webstorm/whatsnew](https://www.jetbrains.com/webstorm/whatsnew/) So happy about...
Here's how I solved it: ```js webpack(config) { // Configures webpack to handle SVG files with SVGR. SVGR optimizes and transforms SVG files // into React components. See https://react-svgr.com/docs/next/ //...