Skip to content

Commit

Permalink
fix(vpcv2): set repo to private false in package json
Browse files Browse the repository at this point in the history
  • Loading branch information
shikha372 committed Sep 4, 2024
1 parent 511eab3 commit e0979ab
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 2 additions & 0 deletions packages/@aws-cdk/aws-ec2-alpha/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,5 @@ jest.config.js
junit.xml
!*.lit.ts
**/*.snapshot

test/
8 changes: 6 additions & 2 deletions packages/@aws-cdk/aws-ec2-alpha/README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
# Amazon VpcV2 Construct Library

<!--BEGIN STABILITY BANNER-->

---

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

> 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.
> 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.
---

<!--END STABILITY BANNER-->


## VpcV2

`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
Expand Down
5 changes: 4 additions & 1 deletion packages/@aws-cdk/aws-ec2-alpha/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-cdk/aws-ec2-alpha",
"private": true,
"private": false,
"version": "0.0.0",
"description": "The CDK construct library for VPC V2",
"main": "lib/index.js",
Expand Down Expand Up @@ -103,5 +103,8 @@
"env": {
"AWSLINT_BASE_CONSTRUCT": true
}
},
"publishConfig": {
"tag": "latest"
}
}

0 comments on commit e0979ab

Please sign in to comment.