-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add LLRT binary type property (#9)
* feat: add LLRT binary type property * ftfy * fix
- Loading branch information
Showing
36 changed files
with
3,540 additions
and
1,097 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
import { join } from 'path'; | ||
import { awscdk } from 'projen'; | ||
const project = new awscdk.AwsCdkConstructLibrary({ | ||
author: 'tmokmss', | ||
authorAddress: '[email protected]', | ||
// we don't strictly guarantee it works in older CDK (integ-runner runs on newer CDK), but hopefully it should. | ||
cdkVersion: '2.38.0', | ||
defaultReleaseBranch: 'main', | ||
jsiiVersion: '~5.3.0', | ||
jsiiVersion: '~5.4.0', | ||
name: 'cdk-lambda-llrt', | ||
projenrcTs: true, | ||
repositoryUrl: 'https://github.com/tmokmss/cdk-lambda-llrt.git', | ||
|
@@ -19,10 +21,22 @@ const project = new awscdk.AwsCdkConstructLibrary({ | |
compilerOptions: {}, | ||
exclude: ['example', 'test/.*.snapshot'], | ||
}, | ||
devDeps: ['@aws-cdk/[email protected]', '@aws-cdk/[email protected]', 'esbuild'], | ||
devDeps: [ | ||
'aws-cdk-lib', | ||
'aws-cdk', | ||
'constructs', | ||
'@aws-cdk/integ-runner@^2.159.0-alpha.0', | ||
'@aws-cdk/integ-tests-alpha@^2.159.0-alpha.0', | ||
'esbuild', | ||
], | ||
peerDependencyOptions: { | ||
pinnedDevDependency: false, | ||
}, | ||
}); | ||
|
||
project.addPackageIgnore('.tmp'); | ||
// required to run integ tests | ||
project.projectBuild.testTask.exec('npm install', { cwd: join('example', 'lambda') }); | ||
project.projectBuild.testTask.exec('yarn tsc -p tsconfig.dev.json && yarn integ-runner'); | ||
|
||
project.synth(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.