Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
richardzcode committed Feb 1, 2018
1 parent 94c72b5 commit 947b766
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 9 deletions.
3 changes: 2 additions & 1 deletion packages/aws-amplify/dist/aws-amplify.js
Original file line number Diff line number Diff line change
Expand Up @@ -16666,7 +16666,8 @@ var AuthClass = /** @class */ (function () {
resolve(credentials);
}
});
});
})
.catch(function () { return resolve(null); });
});
};
return AuthClass;
Expand Down
Binary file modified packages/aws-amplify/dist/aws-amplify.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/aws-amplify/dist/aws-amplify.js.map

Large diffs are not rendered by default.

Binary file modified packages/aws-amplify/dist/aws-amplify.js.map.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/aws-amplify/dist/aws-amplify.min.js

Large diffs are not rendered by default.

Binary file modified packages/aws-amplify/dist/aws-amplify.min.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/aws-amplify/dist/aws-amplify.min.js.map

Large diffs are not rendered by default.

Binary file modified packages/aws-amplify/dist/aws-amplify.min.js.map.gz
Binary file not shown.
3 changes: 2 additions & 1 deletion packages/aws-amplify/lib/Auth/Auth.js

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

2 changes: 1 addition & 1 deletion packages/aws-amplify/lib/Auth/Auth.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/aws-amplify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aws-amplify",
"version": "0.2.0",
"version": "0.2.2",
"description": "AWS Amplify is a JavaScript library for Frontend and mobile developers building cloud-enabled applications.",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
Expand Down Expand Up @@ -55,7 +55,7 @@
},
"dependencies": {
"amazon-cognito-identity-js": "1.29.0",
"aws-sdk": "^2.185.0",
"aws-sdk": "2.177.0",
"axios": "^0.17.0"
},
"jest": {
Expand Down
3 changes: 2 additions & 1 deletion packages/aws-amplify/src/Auth/Auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,8 @@ export default class AuthClass {
resolve(credentials);
}
});
});
})
.catch(() => resolve(null));
});
}
}

0 comments on commit 947b766

Please sign in to comment.