Skip to content

Commit

Permalink
fix(amplify-category-api): fix api add-graphql-datasource command (#2320
Browse files Browse the repository at this point in the history
)
  • Loading branch information
UnleashedMind committed Sep 17, 2019
1 parent 5d019a6 commit a9c829d
Show file tree
Hide file tree
Showing 12 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion packages/amplify-category-analytics/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ async function executeAmplifyCommand(context) {
}

async function handleAmplifyEvent(context, args) {
console.log(`${category} handleAmplifyEvent to be implmented`);
context.print.info(`${category} handleAmplifyEvent to be implmented`);
context.print.info(`Received event args ${args}`);
}

Expand Down
2 changes: 1 addition & 1 deletion packages/amplify-category-api/amplify-plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "api",
"type": "category",
"commands": [
"add-datesource",
"add-graphql-datasource",
"add",
"console",
"gql-compile",
Expand Down
2 changes: 1 addition & 1 deletion packages/amplify-category-api/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ async function executeAmplifyCommand(context) {
}

async function handleAmplifyEvent(context, args) {
console.log(`${category} handleAmplifyEvent to be implmented`);
context.print.info(`${category} handleAmplifyEvent to be implmented`);
context.print.info(`Received event args ${args}`);
}

Expand Down
2 changes: 1 addition & 1 deletion packages/amplify-category-auth/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ async function executeAmplifyCommand(context) {
}

async function handleAmplifyEvent(context, args) {
console.log(`${category} handleAmplifyEvent to be implmented`);
context.print.info(`${category} handleAmplifyEvent to be implmented`);
context.print.info(`Received event args ${args}`);
}

Expand Down
2 changes: 1 addition & 1 deletion packages/amplify-category-function/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ async function executeAmplifyCommand(context) {
}

async function handleAmplifyEvent(context, args) {
console.log(`${category} handleAmplifyEvent to be implmented`);
context.print.info(`${category} handleAmplifyEvent to be implmented`);
context.print.info(`Received event args ${args}`);
}

Expand Down
2 changes: 1 addition & 1 deletion packages/amplify-category-hosting/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ async function executeAmplifyCommand(context) {
}

async function handleAmplifyEvent(context, args) {
console.log(`${category} handleAmplifyEvent to be implmented`);
context.print.info(`${category} handleAmplifyEvent to be implmented`);
context.print.info(`Received event args ${args}`);
}

Expand Down
2 changes: 1 addition & 1 deletion packages/amplify-category-interactions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ async function executeAmplifyCommand(context) {
}

async function handleAmplifyEvent(context, args) {
console.log(`${category} handleAmplifyEvent to be implmented`);
context.print.info(`${category} handleAmplifyEvent to be implmented`);
context.print.info(`Received event args ${args}`);
}

Expand Down
2 changes: 1 addition & 1 deletion packages/amplify-category-notifications/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async function executeAmplifyCommand(context) {
}

async function handleAmplifyEvent(context, args) {
console.log(`${category} handleAmplifyEvent to be implmented`);
context.print.info(`${category} handleAmplifyEvent to be implmented`);
context.print.info(`Received event args ${args}`);
}

Expand Down
2 changes: 1 addition & 1 deletion packages/amplify-category-predictions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ async function executeAmplifyCommand(context) {
}

async function handleAmplifyEvent(context, args) {
console.log(`${category} handleAmplifyEvent to be implmented`);
context.print.info(`${category} handleAmplifyEvent to be implmented`);
context.print.info(`Received event args ${args}`);
}

Expand Down
2 changes: 1 addition & 1 deletion packages/amplify-category-storage/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ async function executeAmplifyCommand(context) {
}

async function handleAmplifyEvent(context, args) {
console.log(`${category} handleAmplifyEvent to be implmented`);
context.print.info(`${category} handleAmplifyEvent to be implmented`);
context.print.info(`Received event args ${args}`);
}

Expand Down
2 changes: 1 addition & 1 deletion packages/amplify-category-xr/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ async function executeAmplifyCommand(context) {
}

async function handleAmplifyEvent(context, args) {
console.log(`${category} handleAmplifyEvent to be implmented`);
context.print.info(`${category} handleAmplifyEvent to be implmented`);
context.print.info(`Received event args ${args}`);
}

Expand Down

0 comments on commit a9c829d

Please sign in to comment.