Momo Kornher
Momo Kornher
`Ctrl+C` on selection prompt produces an unsightly error.
Makes sense. Instead of only using the GitHub component, we should also traverse the construct tree and use and use any `GitHubWorkflow` component we can find.
Ah yeah, that'd be a cool addition. A lot of this might already be available here: https://github.com/projen/projen-github-action-typescript
> [#657 (comment)](https://github.com/aws/aws-cdk-rfcs/pull/657#discussion_r2036706731) proposes something similar. Hey @commiterate Thanks for pointing this out! I had missed your comment, otherwise would have referenced your proposal. I see you already started reviewing...
> vitest has made test running a lot faster, so it might benefit also Projen's own tests. Would be interesting to see, but projen is running some chunky end-to-end cycles...
Not against this, but I'm not sure the API will have many benefits over the current one-liner to add this: ```ts project.tasks.tryFind('docgen')?.exec('jsii-docgen -f json -o API.json'); ``` (Use `!` instead...
We can also add some common convenience helpers to `JsiiDocgen` to make this ever so slightly nicer: (requires `of()` and `task` added) ```ts JsiiDocgen.of(project)?.task.exec('jsii-docgen -f json -o API.json'); ```
Defaults to this, which needs changing:
I'd have suggested adding it as an attachment, but seems like there is no API for that 😞 Gradually removing content seems like the best idea. Let's make sure to...
That's good idea! Or even something like `cdkVersion: '2'` should work. Note that defining `cdkVersion: '2.50.0'` will already result in a version constraint of `^2.50.0`. When `npx projen upgrade` is...