Skip to content

Commit

Permalink
fix: Change targeted package identifier (#17)
Browse files Browse the repository at this point in the history
* Adding files used for bundling and function deployment

* Adding bundling and type components with respective tests

* adding .idea into gitignore

* Adding function construct and related tests

* Update projen configuration and add integ testing files

* fixing unit tests and improving bundling command

* Adding integ tests

* fixing unit tests

* Update/Improve integration test
Fix Docker bundling

* Improve and Fix readme + Rosetta

* Update projen to make repository publicly available

* Prepare for release

* update yarn.lock

* Upgrade projen to fix Node engine version issue

* Fix dockerfile

* Fix dockerfile platform

* Refactor Dockerfile to use default AL2023 image

* Remove ForceDockerBundling option

* change project name

* fix ficture

* Update projen configuration for package assignment

* chore: self mutation

Signed-off-by: github-actions <[email protected]>

* Updating API.md component

---------

Signed-off-by: github-actions <[email protected]>
Co-authored-by: github-actions <[email protected]>
  • Loading branch information
stevehouel and github-actions authored Jan 11, 2024
1 parent 7e2693d commit b941b35
Show file tree
Hide file tree
Showing 6 changed files with 200 additions and 273 deletions.
28 changes: 0 additions & 28 deletions .github/workflows/build.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 1 addition & 37 deletions .github/workflows/release.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 0 additions & 12 deletions .projen/tasks.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 8 additions & 9 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,20 @@ const project = new CdklabsConstructLibrary({
JsiiLanguage.JAVA,
JsiiLanguage.PYTHON,
JsiiLanguage.DOTNET,
JsiiLanguage.GO,
],
publishToMaven: {
javaPackage: 'software.amazon.awscdk.services.lambda.rust',
mavenGroupId: 'software.amazon.awscdk',
mavenArtifactId: 'lambda-rust',
mavenEndpoint: 'https://aws.oss.sonatype.org',
javaPackage: 'io.github.cdklabs.awslambdarust',
mavenGroupId: 'io.github.cdklabs',
mavenArtifactId: 'aws-lambda-rust',
mavenEndpoint: 'https://s01.oss.sonatype.org',
},
publishToPypi: {
distName: 'aws-cdk.aws-lambda-rust',
module: 'aws_cdk.aws_lambda_rust',
distName: 'cdklabs.aws-lambda-rust',
module: 'cdklabs.aws_lambda_rust',
},
publishToNuget: {
dotNetNamespace: 'Amazon.CDK.AWS.Lambda.Rust',
packageId: 'Amazon.CDK.AWS.Lambda.Rust',
dotNetNamespace: 'Cdklabs.AwsLambdaRust',
packageId: 'Cdklabs.AwsLambdaRust',
},
autoApproveOptions: {
allowedUsernames: ['aws-cdk-automation', 'dependabot[bot]', 'mergify[bot]'],
Expand Down
28 changes: 12 additions & 16 deletions package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b941b35

Please sign in to comment.