Sidharth Ramesh
Sidharth Ramesh
Thank you for the great work! As of now, can I use the parser with my svelte-typescript project? I want to extract the exported props and their types into JSON....
Thank you @alexprey. For now, I guess I'll just use regex to extract out and parse the JSDocs in a svelte file.
Running docker-compose fails ``` web_1 | 16-Oct-2020 11:38:39.601 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server version name: Apache Tomcat/8.5.58 web_1 | 16-Oct-2020 11:38:39.604 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server built: Sep 10 2020 21:45:33 UTC...
Figured it out. Fixed with #1088
Thanks a lot for this!
#200 Kinda fixes this, but still would be nice to not have to override vite defaults.
> I created a custom directive that makes this less painful. Suggestions or improvements are welcome! > > ```js > // model-custom-element.js > import Vue from 'vue'; > > const...
I had a very similar problem and I was able to reproduce it if all these conditions are met: 1) The service is mentioned in `docker-conpose.yaml`. 2) The service has...
How about setting the cookie name based on the client_id? Or something similar? More discussions here: https://stackoverflow.com/questions/65493296/authorization-code-flow-concurrent-requests-from-multiple-tabs
For example, if instead of using a constant `cookieAuthenticationCSRFName` in these places: https://github.com/ory/hydra/blob/b17b47431672b2c046a17869c18c8ff81a454170/consent/strategy_default.go#L284 https://github.com/ory/hydra/blob/b17b47431672b2c046a17869c18c8ff81a454170/consent/strategy_default.go#L360 if we can somehow make it specific for each client, `cookieAuthenticationCSRFName + clientId` for instance, do...