rprovodenko
rprovodenko
## Describe the bug When specifying AWS_PROFILE, AWS_SECRET_ACCESS_KEY, AWS_SESSION_TOKEN and AWS_CREDENTIAL_EXPIRATION sdk still uses the ini file for credentials. V2 SDK works fine. ``` const sts = new STS({}); console.log(await...
**Describe the bug** ``` await curly.get("https://www.baidu.com/s?wd=Russia", { verbose: true, }); ``` Hangs forever. Logs: ``` * STATE: INIT => CONNECT handle 0x7f9cd404b808; line 1879 (connection #-5000) * Added connection 0....
If in `tsconfig` you have ``` "module": "ES2015" ``` then asset relocation works If you switch to ``` "module": "CommonJS" ``` It stops working Related to https://github.com/vercel/ncc/issues/951
Steps to reproduce: - have a yarn workspaces monorepo - have 2 packages in the monorepo - package A has an asset dependency - package B uses package A -...
In a lerna monorepo, if you have `paths` defined in one of the packages `tsconfig`, e.g. ``` ... "paths": { "@common/*": ["common/*"] } ... ``` And you import using those...