Skip to content

Commit 7c77ee3

Browse files
authored
minor jsii fixes (#7)
1 parent 2aa6c52 commit 7c77ee3

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

.github/workflows/integration-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/checkout@v2
1414
with:
1515
ref: main
16-
repository: ammarkarachi/amplify-cli-export-construct
16+
repository: aws-amplify/amplify-cli-export-construct
1717
path: amplify-cli-export-construct
1818
- name: Setup Node.js
1919
uses: actions/[email protected]
@@ -30,8 +30,8 @@ jobs:
3030
- name: Checkout
3131
uses: actions/checkout@v2
3232
with:
33-
repository: ammarkarachi/amplify-cli
34-
ref: refactor/packaging
33+
repository: aws-amplify/amplify-cli
34+
ref: extOverrides2
3535
path: amplify-cli
3636
- name: Build Amplify E2E Core
3737
run: |

.github/workflows/release-beta.yml

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

.github/workflows/release.yml

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

.projenrc.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ const integrationTestJob = {
110110
uses: 'actions/checkout@v2',
111111
with: {
112112
ref: 'main',
113-
repository: 'ammarkarachi/amplify-cli-export-construct',
113+
repository: 'aws-amplify/amplify-cli-export-construct',
114114
path: 'amplify-cli-export-construct',
115115
},
116116
},
@@ -129,8 +129,8 @@ const integrationTestJob = {
129129
name: 'Checkout',
130130
uses: 'actions/checkout@v2',
131131
with: {
132-
repository: 'ammarkarachi/amplify-cli',
133-
ref: 'refactor/packaging',
132+
repository: 'aws-amplify/amplify-cli',
133+
ref: 'extOverrides2',
134134
path: 'amplify-cli',
135135
},
136136
},

src/include-nested-stacks/base-included-stack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export class CfnResourceNotFoundError extends Error {
99
/**
1010
* @internal
1111
*/
12-
export class BaseIncludedStack implements IncludedNestedStack {
12+
export class BaseIncludedStack {
1313
includedTemplate: CfnInclude;
1414
stack: NestedStack;
1515
constructor(includedStack: IncludedNestedStack) {

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export { AmplifyExportedBackendProps } from './amplify-exported-backend-props';
22
export { AmplifyExportedBackend } from './export-backend';
33
export * from './types';
4-
export { ProviderCredential } from './include-nested-stacks';
4+
export * from './include-nested-stacks';

src/types/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export * from './category-stack-mapping';
22
export * from './export-manifest';
3-
export * from './export-tags';
3+
export * from './export-tags';

0 commit comments

Comments
 (0)