-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
…cdk-constructs-v2 (#1) * chore(build): change package name to '@lumigo/cdk-constructs-v2' * chore(build): improve repo metadata and upgrade projen * chore(build): use GITHUB_TOKEN instead of Projen-specific one for upgrades
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
const { awscdk } = require('projen'); | ||
const project = new awscdk.AwsCdkConstructLibrary({ | ||
author: 'Michele Mancioppi', | ||
authorAddress: '[email protected]', | ||
author: 'Lumigo', | ||
authorEmail: '[email protected]', | ||
authorOrganization: true, | ||
authorUrl: 'https://lumigo.io', | ||
cdkVersion: '2.27.0', | ||
defaultReleaseBranch: 'main', | ||
name: 'lumigo-cdk-constructs', | ||
description: 'Home to the Lumigo constructs for the AWS Cloud Development Kit (AWS CDK)', /* The description is just a string that helps people understand the purpose of the package. */ | ||
repositoryUrl: 'https://github.com/lumigo-io/lumigo-cdk-constructs.git', | ||
bugsUrl: 'https://github.com/lumigo-io/lumigo-cdk-constructs/issues', | ||
/* Runtime dependencies of this module. */ | ||
deps: [ | ||
'@aws-cdk/aws-lambda-python-alpha@^2.27.0-alpha.0', | ||
|
@@ -15,6 +18,9 @@ const project = new awscdk.AwsCdkConstructLibrary({ | |
devDeps: [ | ||
'@jest/globals', | ||
], | ||
packageName: 'lumigo-cdk2-alpha', /* The "name" in package.json. */ | ||
packageName: '@lumigo/cdk-constructs-v2', /* The "name" in package.json. */ | ||
keywords: ['Observability', 'Serverless', 'Cloud-native', 'Infrastructure-as-code'], | ||
majorVersion: 0, | ||
projenTokenSecret: 'GITHUB_TOKEN', | ||
}); | ||
project.synth(); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.