Daniel Friesen

Results 336 comments of Daniel Friesen

A screenshot of the desktop view and what hardware you're using would be helpful. Though if no-one can reproduce the issue I'm not sure how to identify what the cause...

Sadly I can't identify anything obvious that would cause the problem

I'd really like this. Not knowing anything about a plugin when installed is really annoying. And it seems to have gotten worse. I recently installed ST3 and started re-installing some...

I had the same issue (my files are `.mjs`), updating `(extname(previousPath) === '.js' && extname(nextPath) === '.js')` to this made it work: ```js (extname(previousPath) === '.js' && extname(nextPath) === '.js')...

Yes. I also saw his comments lamenting that his programming skills in this area aren't the best. And it's not ideal to put all of VR emulation on his shoulders....

`devDependencies` is for anything you need build/test/etc time that isn't in `dependencies`. `dependencies` is for anything you need at runtime and use entirely yourself. But, this isn't a normal library...

Basically ractive is more of a peer dependency for ractivate. However npm's `peerDependencies` is terribly broken and being considered for removal.

> Also, correct me if I'm wrong, but someone desiring a different version of ractive could still make the same mistake with this change. If ractive isn't already installed, it...

I'd actually like this test for those arguments to be dropped entirely. Making these arguments/ENV required makes route53-transfer break when credentials have already been configured in some other way. Boto...