Dominick
Dominick
If that's the case which project should this be referred to?
Sure. Happy to add the adjusted `gitattributes`.
I am having the same issue when it comes to Booleans. ``` var reader = new StringReader(@"test: true"); var deserializer = new DeserializerBuilder().Build(); var yamlObject = deserializer.Deserialize(reader); var js =...
This seems to work for me as well. Thanks. @M3psipax The only thing that jumps to mind is the special Boolean types in YAML. You probably need an Enum to...
Agreed. Having a single span per line under the initial `` would be enough here.
Hey. Thanks for the PR. I'm in the process of moving and don't have my dev setup ready yet. Do you mind if I take a week or so before...
Fair enough. If you want to skip the build, you can use the built files in the releases section of this repo as well.
Hey. To confirm it is `Rollup` that we are trying to get working. We tried Babel with `regenerator-runtime` but unfortunately it produced a script that would stack overflow for both...
Thank you very much for looking into this and helping with the repro code.
Hey. So I have shrunk down the repro to work as a unit test under `Jint.Tests.CommonScripts/Scripts`: ```js const promise1 = new Promise(resolve => { resolve(); }).then(() => [promise2]) const promise2...