Zack Mully
Zack Mully
@marciocadev the `@pjid`, from what I can tell, is used by the cli to do project type input checks as well as to provide shortened display names like here: https://github.com/projen/projen/blob/9f4a6ffa9ab90400fbbecdda7d993290b391ebb2/src/cli/cmds/new.ts#L109-130...
So I've been trying to work around this, and I think I've found a couple of other issues with it... So `npx projen new` does use `createProject`, but does a...
@mrgrain Well, I don't immediately have a use case for a custom cli, but I was attempting to use one to work around issues with external projects and it sounded...
@hopenbr try running it with `file:/` prefix, that definitely helped me, but doesn't solve all the problems with external projen projects... ``` npx projen new --from file:/../../lfg-constructlib/dist/js/[email protected] --projen-ts ```
I'd add to this: - `alb.ingress.kubernetes.io/wafv2-acl-arn` Additionally, updating `IngressClassParams` appears to only affect _new_ ALBs, not existing ALBs. While I can understand the reasoning behind this, having changes to the...
@rclark when work with @Rub21 on #85 we discovered that the console logins are not considered API calls, so the `detail-type` has to be updated. ``` 'detail-type': [ 'AWS Console...
After talking over this with @alulsh I think the pattern going ahead for the first cut at this will be one-to-one, SNS-topic-to-lambda. While this could have a one-to-many pattern, I...
@mrgrain I'm trying your proposed temporary fix of referencing the tarball and I'm getting a semver error when I try to initialize a new project with: `cd $(mktemp -d) &&...
``` zmully@ubu2 /tmp/tmp.LjeUntIV5c $ npm -v 8.15.0 ``` @mrgrain still not working with the package name addition: ``` zmully@ubu2 /tmp/tmp.WsRcs7o6OH $ cd $(mktemp -d) && npx projen new zaiPython --packageManager...
@orlandronen1 thanks for the tip, renaming the tarball did work works: - `npx projen new zaiPython --packageManager npm --from /home/zmully/gitwork/python-test-2/dist/js/python-test-2.tgz` does not work: - `npx projen new zaiPython --packageManager npm...