Carlos González

Results 115 comments of Carlos González

No problem. Do you want to keep the name `Connection` inside `promise.d.ts`, change it to `PromiseConnection` as it's called in `mysql2`, or keep the old definition of `Connection` and add...

Well, the the base entities are meant to be used directly if no changes need to made to it. This would maybe be 70% of the time. An application should...

My current workaround is a wrapper for both libraries: `my-ts-node.ts` ```ts #!/usr/bin/env ts-node --transpileOnly import execa from 'execa'; import * as ts from 'typescript'; const entrypoint = process.argv[2]; const configFile...

Using version `v3.35.3` and pulumi commands will actually log in with any existing `PULUMI_ACCESS_TOKEN` and the session will persist even across different terminal sessions. Changing the environment variable to a...

> While you could use the PULUMI_ACCESS_TOKEN env var to override the account being used, it's not a developer-friendly experience to have to create an access token for each of...

@zkochan I am doing exactly that and it's not working at any level (workspace root or specific package). Eg: With the preinstall script in the workspace root allowing only pnpm...

Is there any particular use-case for this that can't be achieved with the current implementation?

What is the intended way to add policies, currently (v0.0.5)? ```tf data "aws_iam_policy" "secretsmanager_read_write" { arn = "arn:aws:iam::aws:policy/SecretsManagerReadWrite" } module "mwaa" { ... create_iam_role = true # optional, added for...

FWIW the current implementation works perfectly for my use case which is: - i have 3 deployment environments - all terraform config testing is done in the first (development branch)...

Can someone explain further? When using `node-linker=hoisted` in root/.npmrc and running `pnpm i` in the worspace root, expo files are not found in the react native app's node_modules, but rather...