Skip to content

Commit 4d86440

Browse files
author
Bob Dill
committed
updated setup scripts to composer 0.16.2
1 parent 9b39f36 commit 4d86440

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

Chapter13/.eslintrc.yml

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ rules:
2626
- args: none
2727
no-console: off
2828
no-case-declarations: off
29+
no-tabs: off
2930
curly: error
3031
eqeqeq: error
3132
no-throw-literal: error

setup_OSX.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,13 @@ function installNodeDev ()
113113
if [[ $SDK_INSTALL == "true" ]]; then
114114
showStep "The composer-cli contains all the command line operations for developing business networks."
115115
npm uninstall -g composer-cli
116-
npm install -g [email protected].0
116+
npm install -g [email protected].2
117117
showStep "The generator-hyperledger-composer is a Yeoman plugin that creates bespoke applications for your business network."
118118
npm uninstall -g generator-hyperledger-composer
119-
npm install -g [email protected].0
119+
npm install -g [email protected].2
120120
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."
121121
npm uninstall -g composer-rest-server
122-
npm install -g [email protected].0
122+
npm install -g [email protected].2
123123

124124
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."
125125
npm install -g yo

setup_Ubuntu_Part_1.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -161,13 +161,13 @@ function installNodeDev ()
161161
if [[ $SDK_INSTALL == "true" ]]; then
162162
showStep "The composer-cli contains all the command line operations for developing business networks."
163163
npm uninstall -g composer-cli
164-
npm install -g --python=python2.7 [email protected].0
164+
npm install -g --python=python2.7 [email protected].2
165165
showStep "The generator-hyperledger-composer is a Yeoman plugin that creates bespoke applications for your business network."
166166
npm uninstall -g generator-hyperledger-composer
167-
npm install -g --python=python2.7 [email protected].0
167+
npm install -g --python=python2.7 [email protected].2
168168
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."
169169
npm uninstall -g composer-rest-server
170-
npm install -g --python=python2.7 [email protected].0
170+
npm install -g --python=python2.7 [email protected].2
171171
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."
172172
npm install -g --python=python2.7 yo
173173
else

0 commit comments

Comments
 (0)