Skip to content

Commit 7f77310

Browse files
authored
Merge branch 'master' into huijbers/cli-cyclic-deps
2 parents 4cc3dff + 41ce29c commit 7f77310

4 files changed

Lines changed: 18 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,10 @@ updates:
1111
labels:
1212
- "auto-approve"
1313
open-pull-requests-limit: 5
14+
- package-ecosystem: "pip"
15+
directory: "/packages/@aws-cdk/lambda-layer-awscli"
16+
schedule:
17+
interval: "weekly"
18+
labels:
19+
- "auto-approve"
20+
open-pull-requests-limit: 5

packages/@aws-cdk/aws-ec2/lib/vpc-endpoint-service.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ import { CfnVPCEndpointService, CfnVPCEndpointServicePermissions } from './ec2.g
1111
export interface IVpcEndpointServiceLoadBalancer {
1212
/**
1313
* The ARN of the load balancer that hosts the VPC Endpoint Service
14+
*
15+
* @attribute
1416
*/
1517
readonly loadBalancerArn: string;
1618
}

packages/awslint/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"noUnusedLocals": true,
1212
"noUnusedParameters": true,
1313
"noImplicitReturns": true,
14+
"experimentalDecorators": true,
1415
"noFallthroughCasesInSwitch": true,
1516
"resolveJsonModule": true,
1617
"composite": true,

tools/@aws-cdk/ubergen/bin/ubergen.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -511,6 +511,14 @@ async function copyOrTransformFiles(from: string, to: string, libraries: readonl
511511
async function copyLiterateSources(from: string, to: string, libraries: readonly LibraryReference[], uberPackageJson: PackageJson) {
512512
const libRoot = resolveLibRoot(uberPackageJson);
513513
await Promise.all((await fs.readdir(from)).flatMap(async name => {
514+
const source = path.join(from, name);
515+
const stat = await fs.stat(source);
516+
517+
if (stat.isDirectory()) {
518+
await copyLiterateSources(source, path.join(to, name), libraries, uberPackageJson);
519+
return;
520+
}
521+
514522
if (!name.endsWith('.lit.ts')) {
515523
return [];
516524
}

0 commit comments

Comments
 (0)