-
Notifications
You must be signed in to change notification settings - Fork 286
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor(sdk):renamed sdk package to api client #324
Conversation
@yash2189 Thank you for the PR! Two things:
Other than these (and with the assumption that the CI will pass) it looks good to me. |
@petermetz Thanks for the review. The errors a related to |
@yash2189 I think you forgot to replace all the package imports from 'sdk' to 'api-client' in the code of the other packages that depend on See: https://travis-ci.org/github/hyperledger/cactus/jobs/738502564#L592 |
@yash2189 Looks like now you added one too many spaces. The one on the left from the parentheses is tripping the commit message linter if I'm guessing it right. |
sorry typo , I'm doing it again |
Hi @petermetz , All the 3 checks have been passed , I have made the changes. |
Awesome, thank you so much @yash2189 ! |
Signed-off-by: yash2189 <yashajgaonkar24@gmail.com>
@petermetz Done! Thanks for guiding me throughout the process. :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
This commit updates references of cactus-sdk that were missed by the earlier pull request: hyperledger-cacti#324 Signed-off-by: Peter Somogyvari <peter.somogyvari@accenture.com> hyperledger-cacti#314
IIN Agent Auto Sync Bug and Deploy Workflow improvement
Fixes #314
Previously there was a package named
cactus-sdk
which had ambiguity within the project since it was referred to as an SDK of SDK's. This PR renames thecactus-sdk
tocactus-api-client
and changes the documentation , files supporting the same.What has been updated ?
1 . In the package.json file, the properties: name, main, browser, browserMinified, mainMinified properties are all updated
2. The references in all the other packages are also updated to import the new package instead of the old one
3. Documentation is updated (
README.md
)The changes for the updated directory can be found here