Edward Foyle

Results 47 comments of Edward Foyle

@josefaidt > that command just loops for me :/ I have to kill my terminal to stop it I think you need to build locally first `npm run build &&...

Hi @JDMathew, this happens due to how different package managers deal with unmet peer dependencies. `npm` and `pnpm` will automatically resolve and install them. `yarn` has taken the stance that...

Yes, we should call this out in the docs. And thanks for bringing up the devDependency issue; that also needs to be corrected. Marking as a docs issue

Is the expected behavior here to fail with a better error message? Or to pick a different profile? Our code is not picking one over the other, we are using...

Based on https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/loading-node-credentials-configured-credential-process.html and the env info above that shows `AWS_SDK_LOAD_CONFIG = 1` was set, this looks like expected and documented behavior of the node credential provider. If `AWS_SDK_LOAD_CONFIG` is...

Hi @ncarvajalc are you still interested in looking into @sobolk's suggestions?

I was able to work around the issue by creating a post-push script to override the output content. amplify/hooks/post-push.sh: ```sh tmp=$(mktemp) jq '.aws_cognito_username_attributes = ["EMAIL", "PHONE_NUMBER"]' src/amplifyconfiguration.json > "$tmp" mv...