Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

feat: initial implementation #3

Merged
merged 12 commits into from
Dec 30, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .projenrc.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import { CdklabsJsiiProject } from 'cdklabs-projen-project-types';
import { JsonPatch } from 'projen';

const coverageThreshold = 95;

const project = new CdklabsJsiiProject({
author: 'AWS',
authorAddress: 'aws-cdk-dev@amazon.com',
Expand All @@ -7,10 +11,27 @@ const project = new CdklabsJsiiProject({
projenrcTs: true,
release: false,
repositoryUrl: 'https://github.com/cdklabs/cdk-atmosphere-client.git',
jestOptions: {
jestConfig: {
coverageThreshold: {
statements: coverageThreshold,
lines: coverageThreshold,
functions: coverageThreshold,
branches: coverageThreshold,
},
coveragePathIgnorePatterns: [
'<rootDir>/node_modules/',
'<rootDir>/test/',
],
},
},

// deps: [], /* Runtime dependencies of this module. */
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */
// devDeps: [], /* Build dependencies for this module. */
// packageName: undefined, /* The "name" in package.json. */
});

project.package.file.patch(JsonPatch.add('/jest/randomize', true));

project.synth();
242 changes: 235 additions & 7 deletions API.md

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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# replace this
# CDK Atmosphere Client
18 changes: 14 additions & 4 deletions package.json

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

Loading
Loading