James Messinger

Results 225 comments of James Messinger

Do you have `browserify-shim` installed? Based on the error message, it sounds like it can't find it the `node_modules` folder.

Simplifyify just [propagates events from Browserify](https://github.com/BigstickCarpet/simplifyify/blob/25e261ec2fcad80158cbb5a4af4feb4dfe800f91/lib/write-bundles.js#L170-L182). If you have multiple entry files, then there will be multiple Browserify instances propagating events, which is why any of the events can fire...

This bug is caused by the following code, which assumes that a dot in the output path indicates a file extension: https://github.com/BigstickCarpet/simplifyify/blob/ed7011687b243de429e6534ddbe6f5e7be494c38/lib/expand-globs.js#L103-L106 I'm not sure what the right fix is...

Interesting. I've never used Browsersync, so I'm not sure what the issue here is. My hunch is that it's related to [this block of code](https://github.com/BigstickCarpet/simplifyify/blob/6bb51807f964bf48f3aa6f17a631d675ed7cb377/lib/write-bundles.js#L221-L233), which I added a while...

This sounds like a bug in the stringify transform. Maybe something related to the interaction between stringify and babelify. Try it with Browserify directly (rather than going through Simplifyify) and...

Not sure what you mean by "URLs for each service". You should be able to access them at `http://:/ui`, `http://:/editor`, and `http://:/docs`.

If you have a [host & port number specified in your Swagger API](https://github.com/BigstickCarpet/swagger-suite/blob/master/samples/petstore/petstore.yaml#L15), then Swagger Suite will use that. Or, if you don't want to put that in your API...

Hi guys. I just now saw this issue. Am I correct in understanding that this isn't a problem with chai-exec, but rather with an automated job that builds the Chai.js...

@jiyinyiyong @nixar - I had a similar issue with absolute paths in the sourcemap, so I wrote a [browserify plugin](https://www.npmjs.com/package/sourcemapify) to resolve it. Maybe it'll work for you too.

Yeah, the versions of Swagger-Editor and Swagger-UI that are bundled with Swagger Suite are waaay outdated. In the new version, these will be installed as NPM dependencies, so they'll always...