Skip to content

Commit

Permalink
feat: Initialized projen and added project structure for cdk constructs
Browse files Browse the repository at this point in the history
  • Loading branch information
Dinesh Sajwan committed Sep 14, 2023
1 parent 4cca511 commit e5189d9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 36 deletions.
33 changes: 1 addition & 32 deletions .github/workflows/build.yml

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

4 changes: 2 additions & 2 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ const project = new awscdk.AwsCdkConstructLibrary({
copyrightPeriod: '2023-',
copyrightOwner: 'Amazon.com, Inc. or its affiliates. All Rights Reserved.',
gitignore: ['*.DS_STORE'],

mutableBuild: false,
});
project.synth();
project.synth();
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ export class Hello {
public sayHello() {
return 'hello, world!';
}
}
}
2 changes: 1 addition & 1 deletion test/hello.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ import { Hello } from '../src';

test('hello', () => {
expect(new Hello().sayHello()).toBe('hello, world!');
});
});

0 comments on commit e5189d9

Please sign in to comment.