Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(riff-raff.yaml): Introduce
GuRoot
The `GuRoot` class should allow for easy adoption of `riff-raff.yaml` generation. Going from: ```ts // bin/cdk.ts import { App } from "aws-cdk-lib"; const app = new App(); new MyStack(app, "some-id", {}); ``` To: ```ts // bin/cdk.ts import { GuRoot } from "@guardian/cdk/lib/constructs/root"; const app = new GuRoot(); new MyStack(app, "some-id", {}); ```
- Loading branch information