Skip to content

Commit

Permalink
chore: switch convenience package cdk to stable (#25433)
Browse files Browse the repository at this point in the history
This was intended to be able to do `npx cdk` out of the blue, but that won't work as long as the package has a prerelease tag.

The rest of the changes are forced upon me by `pkglint`.


----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
rix0rrr authored May 26, 2023
1 parent b8fed48 commit 784cd0e
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 1 deletion.
3 changes: 3 additions & 0 deletions packages/cdk/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
const baseConfig = require('../../tools/@aws-cdk/cdk-build-tools/config/eslintrc');
baseConfig.parserOptions.project = __dirname + '/tsconfig.json';
module.exports = baseConfig;
3 changes: 3 additions & 0 deletions packages/cdk/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ dist
.LAST_PACKAGE
.LAST_BUILD
*.snk

junit.xml
!.eslintrc.js
8 changes: 8 additions & 0 deletions packages/cdk/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,11 @@ dist
.LAST_PACKAGE
.LAST_BUILD
*.snk

# exclude cdk artifacts
**/cdk.out
*.tsbuildinfo
test/
tsconfig.json
junit.xml
.eslintrc.js
10 changes: 10 additions & 0 deletions packages/cdk/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
## AWS CDK Toolkit
<!--BEGIN STABILITY BANNER-->

---

![cdk-constructs: Stable](https://img.shields.io/badge/cdk--constructs-stable-success.svg?style=for-the-badge)

---

<!--END STABILITY BANNER-->

This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.
4 changes: 3 additions & 1 deletion packages/cdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,10 @@
"build+extract": "npm run build"
},
"engines": {
"node": ">= 8.10.0"
"node": ">= 14.15.0"
},
"stability": "stable",
"maturity": "stable",
"publishConfig": {
"tag": "latest"
}
Expand Down

0 comments on commit 784cd0e

Please sign in to comment.