Eli Polonsky
Eli Polonsky
Currently, the compiler will allow the following program: ```typescript export interface IAdder { add(a: number, b: number): number; } export class Adder implements IAdder { public add(a1: number, b1: number):...
The properties that are generated for modules uses the root schema of the module, instead of the schema for its `Parameters`. For example:  Looking...
```ts test('for package @aws-mdaa/bedrock-builder-l3-construct', async () => { const docs = await Documentation.forPackage('@aws-mdaa/[email protected]', { verbose: false }); try { const markdown = await docs.toMarkdown({ language: Language.TYPESCRIPT }); expect(markdown.render()).toMatchSnapshot(); } finally...
Rust is released very frequently, and maintains only the latest minor version (others are considered EOL). This means libraries often bump their minimum rust version requirement, and when they do,...
Lets start using ADRs, with Gen2 migration project being the first one. > See https://github.com/joelparkerhenderson/architecture-decision-record?tab=readme-ov-file#what-is-an-architecture-decision-record
### Problem The dependency upgrade workflow creates the following `yarn` command to bump the versions in the lock file: ```console yarn upgrade ``` According to `yarn` [docs](https://classic.yarnpkg.com/lang/en/docs/cli/upgrade/): > The package.json...
Provisioning clusters inside an isolated vpc (i.e no internet access) is not currently supported. This is because the lambda functions that operate the cluster need to invoke the EKS service,...