Skip to content

Commit 75bf917

Browse files
authored
Merge pull request #18 from gammarers/hotfix/typo-with-deps
fix: typo with deps
2 parents 562e68f + f1f40f7 commit 75bf917

File tree

7 files changed

+26
-13
lines changed

7 files changed

+26
-13
lines changed

.projen/deps.json

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projen/tasks.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projenrc.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ const project = new awscdk.AwsCdkConstructLibrary({
99
name: '@gammarers/aws-codeconnections-host-custom-resource',
1010
projenrcTs: true,
1111
repositoryUrl: 'https://github.com/gammarers/aws-codeconnections-host-custom-resource.git',
12-
// deps: [
13-
// '@gammarers/aws-resource-naming@^0.8.0',
14-
// ],
15-
// devDeps: [
16-
// '@gammarers/[email protected]',
17-
// ],
12+
deps: [
13+
'@gammarers/[email protected]',
14+
],
15+
devDeps: [
16+
'@gammarers/[email protected]',
17+
],
1818
peerDeps: [
1919
'@gammarers/aws-resource-naming@^0.8.0',
2020
],

API.md

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export interface CodeConnectionsHostCustomResourceProps {
7676
readonly providerType: CodeConnectionsHostProviderType;
7777
//readonly resouceNamingOption?: ResourceNamingOptions;
7878
// readonly resouceNamingOption?: { type: ResourceNaming.NamingType.DEFAULT } | { type: ResourceNaming.NamingType.AUTO } | CustomNaming;
79-
readonly resouceNamingOption?: ResourceNamingOption;
79+
readonly resourceNamingOption?: ResourceNamingOption;
8080
}
8181

8282
export class CodeConnectionsHostCustomResource extends cr.AwsCustomResource {
@@ -89,7 +89,7 @@ export class CodeConnectionsHostCustomResource extends cr.AwsCustomResource {
8989
functionName: `custom-resource-codeconnection-host-${random}-func`,
9090
functionRoleName: `custom-resource-codeconnection-host-${random}-func-exc-role`,
9191
};
92-
const names = ResourceNaming.naming(autoNaming, props.resouceNamingOption as ResourceNamingOptions);
92+
const names = ResourceNaming.naming(autoNaming, props.resourceNamingOption as ResourceNamingOptions);
9393
// const naming = {
9494
// names: autoNaming,
9595
// };

test/custom-resource.bitbucket.option.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe('CustomResource Testing', () => {
1919
name: 'bitbucket.example.com',
2020
providerEndpoint: 'https://bitbucket.example.com',
2121
providerType: CodeConnectionsHostProviderType.BIT_BUCKET,
22-
resouceNamingOption: {
22+
resourceNamingOption: {
2323
type: ResourceNamingType.AUTO,
2424
},
2525
});

0 commit comments

Comments
 (0)