Dmytro Maretskyi

Results 32 comments of Dmytro Maretskyi

Hi @meeroslav, i've got the same error. It appears that `@nrwl/nx-cloud` package requires `dotenv` but does not list it in its own dependencies. This only breaks under certain pnpm configurations...

@troywweber7, as a workaround you can place a `.pnpmfile.cjs` file in the root of your repo with the contents: ```javascript // https://pnpm.io/pnpmfile function readPackage(pkg, context) { if(pkg.name === '@nrwl/nx-cloud') {...

@meeroslav It's not in peer dependencies either: ```json { "name": "@nrwl/nx-cloud", "version": "14.3.0", "description": "Nx Cloud plugin for Nx", "keywords": [ "Monorepo", "Nx", "Nx Cloud" ], "main": "index.js", "types": "index.d.ts",...

Would it be possible to integrate this with a testing framework in a way that, in case the test times out, `waitForExpect` would re-throw the last error, instead of failing...

Disabling mocha test timeout once we start waiting, and the re-enabling it to the previous value after `waitForExpect`'s promise has been resolved/rejected seems like the cleanest approach to me. This...

For PNPM i was able to make it install with this hook: ```javascript function readPackage(packageJson, context) { if (packageJson.name === 'wrtc') { delete packageJson.dependencies['node-pre-gyp'] packageJson.dependencies['@mapbox/node-pre-gyp'] = "1.0.3" } return packageJson;...

I believe this is similar to https://community.infura.io/t/polygon-rpc-only-replay-protected-eip-155-transactions-allowed-over-rpc/2997. Try passing chainId in your transaction

Looks like one of our dependencies, `@metamask/detect-provider`, didn't include the source code. Doesn't seem like the critical error though. Does it prevent you from building the app? Also there's not...

Hmm, I see a lot of @ampproject/remapping in the stack trace. Do you have any custom plugins setup for your bundler?