Jeremy Stuckey

Results 8 comments of Jeremy Stuckey

@siarhei-kurhuzenkau-idf after some trial and error, I found that `theme` accepts an escaped json object. ``` -e REDOC_OPTIONS="theme='{\"spacing\": {\"unit\": 10}}'" ``` I'm sure there is a less cumbersome was of...

Hey @Luncher! I tried my best to reproduce your gulp task to see what is going on. What is the result of `gameFiles.concat(commonFiles)`? Does that concatenate the contents of those...

The value that gets assigned to `min` is different. In the original, the value of `min` is only the `rename` stream. In the new version, the value of `min` is...

I was able to generate a gzipped file using ``` javascript var min = rename('gamebuilder.js') .pipe(uglify()) .pipe(gzip({append: true})); ``` Does that not work for you?

I experimented a bit using the [scripts](https://redocly.com/docs/developer-portal/configuration/siteconfig/scripts/) siteConfig option, but no luck. I need to run a script similar to this: ```javascript var hljs = require('highlight.js'); var hljsCurl = require('highlightjs-curl');...

Ah, thank you @adamaltman. Should this documentation be updated? https://redocly.com/docs/developer-portal/guides/markdown/#built-with

The spec explicitly says that the [path item object](https://swagger.io/specification/v3/#paths-object) supports `$ref` while the [operation object](https://swagger.io/specification/v3/#operation-object) does not. I'm guessing that is why the setup I've described above is now considered...

Thank you for reporting this! I spent several hours debugging a failed image build due to my ssh private key. As a workaround, I added this to my Dockerfile: ```dockerfile...