Marcel Laverdet

Results 219 comments of Marcel Laverdet

Sure, it's possible but it's not something I want to work on. If you'd like to swap out the backend for something with a less restrictive license and do the...

Sorry, fibers isn't compatible with worker_threads. I took a look into what would be required to get this working and it's definitely possible but it would take a lot of...

The main issue is statics/globals, yes. Some of these need to be defined per-thread, many need to be defined per-isolate, and some others should remain global but with locking. I...

The stack overflow tests included are known to fail, though the conditions created in the tests don't really mimic real-world applications. The main issue is that v8 seems to have...

@ChALkeR you're right, I was confusing Arch and Alpine. Looking at @nin-jin's case a little more closely I understand why it's failing. Calling Future.wait() manually with huge amount of futures...

I found the following workaround to this: Install from source: ``` git clone https://github.com/thomasjo/atom-ide-cpp.git cd atom-ide-cpp apm link . apm install ``` Open `node_modules/atom-languageclient/build/lib/auto-languageclient.js`. Add this hack to `getSuggestions`: ```...

The problem here is that Amplify CLI writes out an ES6 module: [aws_exports.js.ejs](https://github.com/aws-amplify/amplify-cli/blob/eb9257eaee117d0ed53ebc23aa28ecd7b7510fa1/packages/amplify-frontend-javascript/lib/aws_exports.js.ejs) but then attempts to require it as a CommonJS module: [frontend-config-creator.js](https://github.com/aws-amplify/amplify-cli/blob/6334ea3a1941222711de3923dd0aa66ab50a5a64/packages/amplify-frontend-javascript/lib/frontend-config-creator.js#L226). It's like trying to execute a...

@kriti-eco try installing node-fetch@2 instead. Version 3 made a strict cutover to modules. I recommend kicking the can down the road until Amplify can better support modules.

> I really hope proper ESM support is something the Amplify team will address, soon. I have bad news for you

@beaugunderson > this was supposed to do this for our hybrid approach: > > https://github.com/beaugunderson/ip-address/blob/master/.fix-package-types.sh Yeah idk, these aren't in the published version: ``` -> % npm install ip-address added...