Craig Tataryn
Craig Tataryn
@cgearhart would be great if you could take a look at this and merge if approved.
Just wanted to post a workaround: **Download the typescript templates** ``` openapi-generator-cli author template -g typescript -o ./templates/typescript ``` **Modify the template** Remove the `HttpFile` import from `./templates/typescript/model/model.mustache` **Use the...
@Ervishalpathak7 I believe that's what he's eluding to. When you run the generator with the `--use-new-generator` flag it will not work with the markdown template. It probably should however because...
@aminya I can confirm that adding: ``` build_from_source=true zmq_curve="true" ``` to `.npmrc` doesn't seem to add Curve. Here's my scenario: We were using `"zeromq": "^6.0.0-beta.6"` and the following code works...
Update: By adding the following line to `node_modules/zeromq/CMakeLists.txt`: ``` set(VCPKG_MANIFEST_FEATURES, "${VCPKG_MANIFEST_FEATURES}" CACHE STRING "Features to enable for vcpkg manifest mode") ``` I was able to confirm that the curve feature...
@aminya I sponsored and I'm hoping you have some time to take a 👀
@aminya 👋 Just wanted to check if you've had time to look at this, if not would you be able to advise an approximate time to check back in?
@aminya Thanks for the update, I appreciate it!
Thank you @aminya, I will give this a try and report back. I really appreciate your help 🙏
@aminya confirmed, adding the following to `.npmrc` worked like a charm with `v6.2.0`. ``` zmq_curve="true" zmq_sodium="true" ``` **Question**: would it make sense to only have to specify `zmq_curve="true"` and have...