Badisi
Badisi
Cookies are associated to a domain, you won't be able to see them or access them from script if you are on another domain (this is a security limitation). And...
I once reported the same issue with the previous library version (different scenario though) : [oidc-client-js#948](https://github.com/IdentityModel/oidc-client-js/issues/948) Issue is still relevant with `oidc-client-ts` and @atomicbrainman's proposal to fix it seems the...
There's already a configuration value (ie. `settings.accessTokenExpiringNotificationTimeInSeconds`). It is then passed as `expiringNotificationTimeInSeconds` here: [UserManagerEvents.ts#L48](https://github.com/authts/oidc-client-ts/blob/f8adbdce28fe026c503d2f38a0ef50d3806952fe/src/UserManagerEvents.ts#L48). Later, calculation is made here : [AccessTokenEvents.ts#L35](https://github.com/authts/oidc-client-ts/blob/70c5e94a4ffda35f9154c108427867215a3496ca/src/AccessTokenEvents.ts#L35) : ```ts const duration = container.expires_in; logger.debug("access token...
Similar issue was opened on `@semantic-release/npm`: [#504](https://github.com/semantic-release/npm/issues/504) and you can read my [comment](https://github.com/semantic-release/npm/issues/504#issuecomment-1290858190) for further explanation. This is basically due to an `npm` issue with `workspaces` but could be easily...
Just got the exact same issue yesterday and took me the whole day to figure it out. This has nothing to do with `execa` and is more related to an...
@travi, would you accept a PR to fix that ? (ie. replace `cwd` with `cwd: basePath`)
@travi, yes I'm considering it. What I meant is: Looking at the code here ([publish.js#L26](https://github.com/semantic-release/npm/blob/master/lib/publish.js#L26)): ```ts const basePath = pkgRoot ? path.resolve(cwd, pkgRoot) : cwd; [...] const result = execa(...
I also faced this error a few months ago as I'm authoring a bunch of schematics. I explained why and the solution in the `tip` section here : [ngx-schematics-utilities#usage](https://dsi-hug.github.io/ngx-schematics-utilities/usage) I...
As it is a blocking issue for me, I have made a PR to fix it. @travi, I would be very pleased if you could approve it. Thanks 🙏
#### For anyone interested As no action were taken here and it was blocking for me, I'm using this temporary fix : [package.json#L28](https://github.com/Badisi/auth-js/blob/387364d5e7cf5af6ebd669086bbdfd70e2542b17/package.json#L28) ```json { "scripts": { "postinstall": "node patch-semantic-release-npm.js"...