Skip to content

Commit 87510f9

Browse files
authored
chore(vpcv2): set repo to private false in package json (#31316)
### Issue # (if applicable) Closes . ### Reason for this change vpcv2 is released and should no longer be flagged as private repo ### Description of changes set private:false in package.json ### Description of how you validated changes yarn build ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 125ca2f commit 87510f9

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

packages/@aws-cdk/aws-ec2-alpha/.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,5 @@ jest.config.js
2626
junit.xml
2727
!*.lit.ts
2828
**/*.snapshot
29+
30+
test/

packages/@aws-cdk/aws-ec2-alpha/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
11
# Amazon VpcV2 Construct Library
2-
32
<!--BEGIN STABILITY BANNER-->
43

54
---
65

76
![cdk-constructs: Experimental](https://img.shields.io/badge/cdk--constructs-experimental-important.svg?style=for-the-badge)
87

9-
> The APIs of higher level constructs in this module are experimental and under active development. They are subject to non-backward compatible changes or removal in any future version. These are not subject to the [Semantic Versioning](https://semver.org/) model and breaking changes will be announced in the release notes. This means that while you may use them, you may need to update your source code when upgrading to a newer version of this package.
8+
> The APIs of higher level constructs in this module are experimental and under active development.
9+
> They are subject to non-backward compatible changes or removal in any future version. These are
10+
> not subject to the [Semantic Versioning](https://semver.org/) model and breaking changes will be
11+
> announced in the release notes. This means that while you may use them, you may need to update
12+
> your source code when upgrading to a newer version of this package.
1013
1114
---
1215

1316
<!--END STABILITY BANNER-->
1417

18+
1519
## VpcV2
1620

1721
`VpcV2` is a re-write of the [`ec2.Vpc`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ec2.Vpc.html) construct. This new construct enables higher level of customization

packages/@aws-cdk/aws-ec2-alpha/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-cdk/aws-ec2-alpha",
3-
"private": true,
3+
"private": false,
44
"version": "0.0.0",
55
"description": "The CDK construct library for VPC V2",
66
"main": "lib/index.js",
@@ -103,5 +103,8 @@
103103
"env": {
104104
"AWSLINT_BASE_CONSTRUCT": true
105105
}
106+
},
107+
"publishConfig": {
108+
"tag": "latest"
106109
}
107110
}

0 commit comments

Comments
 (0)