Daniel Ennis

Results 100 comments of Daniel Ennis

Looking for feedback from community on https://github.com/aikar/commands/wiki/Command-Help before we mark this "Stable" and done.

I'm not interested in adding kotlin to the build. There has to be a less invasive way to pull this off.... Id suggest trying to achieve this by registering your...

other idea: register to player preprocess, call getCommand() on the command map and determine ahead of time if the command is going to fail.

This relates to https://github.com/sindresorhus/p-queue/commit/e91d91b221c66f1068589a926a86cfe54f14256c That commit resolves the double resolve issue. However, if you rather keep the promise style API, i would suggest making it clearer in the documentation that...

I'm currently running 2 priority queues, with different concurrency levels, one high one low. Because browsers have a limit on how many requests, can be pending to a single domain,...

I came up with a style like this that i'm extremely happy with ```javascript import cx from "classnames"; function mergeStyles(...styles) { const style = {}; const cxStyle = cx.bind(style); for...

@gajus per my note on #1 about my issues with 'styles' scope, would it be possible if this plugin instead of looking for that specific import and referencing it, looked...

Currently no, but PR's welcome for something like newSharedChain(id, true) where true = queueHead that defaults to false.

@Zidane posting to main should be easy to do with the tick event handler, just maintain a ConcurrentLinkedQueue of tasks to run each tick. The tick based delay will be...

@liach I would be willing to convert TaskChain to gradle if someone PR's it using my base gradle file at https://github.com/aikar/util/blob/master/build.gradle and set the multi projects up like I did...