Skip to content

Commit b941b35

Browse files
stevehouelgithub-actions
and
github-actions
authored
fix: Change targeted package identifier (#17)
* 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]>
1 parent 7e2693d commit b941b35

File tree

6 files changed

+200
-273
lines changed

6 files changed

+200
-273
lines changed

.github/workflows/build.yml

-28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/release.yml

+1-37
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projen/tasks.json

-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projenrc.ts

+8-9
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,20 @@ const project = new CdklabsConstructLibrary({
2121
JsiiLanguage.JAVA,
2222
JsiiLanguage.PYTHON,
2323
JsiiLanguage.DOTNET,
24-
JsiiLanguage.GO,
2524
],
2625
publishToMaven: {
27-
javaPackage: 'software.amazon.awscdk.services.lambda.rust',
28-
mavenGroupId: 'software.amazon.awscdk',
29-
mavenArtifactId: 'lambda-rust',
30-
mavenEndpoint: 'https://aws.oss.sonatype.org',
26+
javaPackage: 'io.github.cdklabs.awslambdarust',
27+
mavenGroupId: 'io.github.cdklabs',
28+
mavenArtifactId: 'aws-lambda-rust',
29+
mavenEndpoint: 'https://s01.oss.sonatype.org',
3130
},
3231
publishToPypi: {
33-
distName: 'aws-cdk.aws-lambda-rust',
34-
module: 'aws_cdk.aws_lambda_rust',
32+
distName: 'cdklabs.aws-lambda-rust',
33+
module: 'cdklabs.aws_lambda_rust',
3534
},
3635
publishToNuget: {
37-
dotNetNamespace: 'Amazon.CDK.AWS.Lambda.Rust',
38-
packageId: 'Amazon.CDK.AWS.Lambda.Rust',
36+
dotNetNamespace: 'Cdklabs.AwsLambdaRust',
37+
packageId: 'Cdklabs.AwsLambdaRust',
3938
},
4039
autoApproveOptions: {
4140
allowedUsernames: ['aws-cdk-automation', 'dependabot[bot]', 'mergify[bot]'],

package.json

+12-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)