Kyle Kirbatski

Results 42 comments of Kyle Kirbatski

It seems to me that Parcel being a library bundler isn't a high priority feature. For libraries I've resorted to using `tscp` which is typescript with the ability to monkey...

So, the code used to look at the existence of a filename and would consider it a field if a file name did not exist. I've been tracing back the...

In my [community repo](https://github.com/kkirby/gorillascript), I made this: ``` #** yield stuff() ``` Be a promise generator.

I'm not sure if it matters, but I +1 this idea and prefer the `thrown$ = true` method over the use of comparing against an Object.

It states in the docs that objects are always mutable, but the variables that point to the object are not. [Check out the documentation.](http://ckknight.github.io/gorillascript/#immutable-by-default) Me personally, I'd like to be...

Yesterday I started to remove generator translation support from GorillaScript, I didnt get very far but it may be a step in the right direction.

I just removed generator support in Gorillascript and published the branch to: https://github.com/kkirby/gorillascript/tree/Updates I haven't actually tested it very well, but it's a start.

Yeah, I'm actually having some issues with building it. Primarily that the compiler is built in Gorillascript, so the new updates are interfering with the build system once it has...

Okay, to get it to compile, you need to modify the `grunt-gorilla/tasks/gorilla.js` and replace all `require('gorillascript')` with `require('../node_modules/gorillascript/index.js')`, then you need to remove the `node_modules` directory in `grunt-gorilla`. Next you...

Okay, the latest code that I pushed should be able to run out of the box if you had any issues before. Just remember to delete the cached prelude. https://github.com/kkirby/gorillascript/commit/cc5f75a148776beae0cc49f5b19c4fd8e98c94c2