-
Notifications
You must be signed in to change notification settings - Fork 921
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated setup scripts to composer 0.16.2
- Loading branch information
Bob Dill
committed
Jun 28, 2018
1 parent
9b39f36
commit 4d86440
Showing
3 changed files
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,13 +113,13 @@ function installNodeDev () | |
if [[ $SDK_INSTALL == "true" ]]; then | ||
showStep "The composer-cli contains all the command line operations for developing business networks." | ||
npm uninstall -g composer-cli | ||
npm install -g [email protected].0 | ||
npm install -g [email protected].2 | ||
showStep "The generator-hyperledger-composer is a Yeoman plugin that creates bespoke applications for your business network." | ||
npm uninstall -g generator-hyperledger-composer | ||
npm install -g [email protected].0 | ||
npm install -g [email protected].2 | ||
showStep "The composer-rest-server uses the Hyperledger Composer LoopBack Connector to connect to a business network, extract the models and then present a page containing the REST APIs that have been generated for the model." | ||
npm uninstall -g composer-rest-server | ||
npm install -g [email protected].0 | ||
npm install -g [email protected].2 | ||
|
||
showStep "Yeoman is a tool for generating applications. When combined with the generator-hyperledger-composer component, it can interpret business networks and generate applications based on them." | ||
npm install -g yo | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -161,13 +161,13 @@ function installNodeDev () | |
if [[ $SDK_INSTALL == "true" ]]; then | ||
showStep "The composer-cli contains all the command line operations for developing business networks." | ||
npm uninstall -g composer-cli | ||
npm install -g --python=python2.7 [email protected].0 | ||
npm install -g --python=python2.7 [email protected].2 | ||
showStep "The generator-hyperledger-composer is a Yeoman plugin that creates bespoke applications for your business network." | ||
npm uninstall -g generator-hyperledger-composer | ||
npm install -g --python=python2.7 [email protected].0 | ||
npm install -g --python=python2.7 [email protected].2 | ||
showStep "The composer-rest-server uses the Hyperledger Composer LoopBack Connector to connect to a business network, extract the models and then present a page containing the REST APIs that have been generated for the model." | ||
npm uninstall -g composer-rest-server | ||
npm install -g --python=python2.7 [email protected].0 | ||
npm install -g --python=python2.7 [email protected].2 | ||
showStep "Yeoman is a tool for generating applications. When combined with the generator-hyperledger-composer component, it can interpret business networks and generate applications based on them." | ||
npm install -g --python=python2.7 yo | ||
else | ||
|