overlookmotel
overlookmotel
I'm late to the party on this one, but a few thoughts on chunk splitting strategies... Code examples below use the convention that a shared chunk which contains code required...
@jlfwong Thanks. That's interesting. Well I did say my understanding was basic! So a vast number of chunks is a bad idea, but still there's likely to be a "best...
@DanielHeath Just to be clear, what I was suggesting is that ESBuild provide an additional option (e.g. `splitOn: ['react']`) which would internally create these dummy entry points, but not output...
Hi @iamnewspecies. This is not a known issue. Have you confirmed that this error is due to cls-bluebird? It seems more likely to me that it's not, or that you/Sequelize...
My apologies. This does sound like it could be an bug in cls-bluebird. @DavidMorton Can you please share some more details? * Are you using promise cancellation? * What version...
Do you mean that you'd expect the generator function not to be called immediately (synchronously) when the coroutine is called? i.e. you'd expect this: ```js const fn = Promise.coroutine( function*()...
Thanks for swift reply, by the way.
How about the case where only a single promise and no callback is passed to `Promise.join()`? ``` js Promise.join( Promise.resolve( 1 ) ).then( function() { ... } ); ``` I...
This appears to be duplicate of #8839.
Sorry to ask this here, but I'm finding it really hard to locate documentation... Is there an `is...()` method to determine if an identifier is being used as a variable?...