Daniel Moore

Results 4 issues of Daniel Moore

Some Octoprint plugins require `/data/plugins/bin` to be on the `PATH,` otherwise installation will fail. In particular, I was unable to update DisplayLayerProgress because `markdown_py` wasn't on the PATH. This fixed...

It'd be really useful to have access to `ListenerType` for testing. Here's util function I wrote today: ```ts type ListenerType = [T] extends [(...args: infer U) => any] ? U...

As of TS 2.1, there is now an [`extends`](http://www.typescriptlang.org/docs/handbook/tsconfig-json.html#configuration-inheritance-with-extends) field that allows configs to inherit configuration from other files. It'd be great if this library emulated that behavior (though perhaps...

enhancement