Noah Wilson

Results 9 comments of Noah Wilson
trafficstars

So... While the filename is required to be `serverless.yml`, the _format_ itself can be JSON. YAML 1.2 is actually a superset of JSON, so any correctly implemented YAML parser should...

Stitching bits and pieces of this thread together I was able to create a workaround: 1) Set the `customInstallTask` flag when constructing the generator `super(args, opts, { customInstallTask: true });`...

Also experiencing this issue. I dug into it a bit. The problem seems to be that the underlying `_finalize` call is never made, so node recognizes this as a hanging...

Putting all of the above together: ``` # Install x86 brew if you haven't before arch -x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" # Install x86 psqlodbc arch --x86_64 /usr/local/Homebrew/bin/brew install...

As @eyalch pointed out, the problem is that interceptors run after guards. The solution is to add an exception filter to do this instead. The following seems to work well;...

I'm experiencing exactly what @ulo described above. Streaming on 5.4.1 with `header: true`, the first 16 rows come back fine. The 17th row and beyond are parsed incorrectly. Converting the...

@danielmorell I haven't, sorry. It's still on my radar though, just been busy with other priorities.

Just hit this as well. Seems like the `.tmp` directory should be removed automatically? Currently I'm having to resort to removing it manually. Similar use case to mweststrate above. Every...

Would it make sense to add a configuration parameter of some sort to choose whether to include all python language id files or to strictly follow the configured include set?...