Compare commits

...

5 Commits

Author SHA1 Message Date
Jon Layton 236b4579a6 Commit package-lock.json 2018-04-03 03:13:31 +00:00
Jon Layton cc9194f88a BTCP gh refs 2018-04-02 10:26:52 -05:00
Chris Kleeschulte 95dc8b2910
Bumped version. 2017-11-22 16:06:23 -05:00
Chris Kleeschulte 10257f7195
Bumped version. 2017-11-13 14:28:07 -05:00
Chris Kleeschulte 6a7b65ce19
Bumped version. 2017-11-13 09:58:20 -05:00
5 changed files with 893 additions and 173 deletions

View File

@ -8,5 +8,5 @@ ENV HOME /home/bitcore
USER bitcore
RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.29.0/install.sh | bash
RUN /bin/bash -l -c "nvm install v4 && nvm alias default v4"
RUN /bin/bash -l -c "npm install bitcore -g"
RUN /bin/bash -l -c "npm install BTCPrivate/bitcore -g"

1042
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "bitcore",
"version": "5.0.0-beta.41",
"version": "5.0.0-beta.44",
"description": "A platform to build bitcoin and blockchain-based applications.",
"engines": {
"node": ">=8.0.0"
@ -33,13 +33,13 @@
],
"repository": {
"type": "git",
"url": "https://github.com/bitpay/bitcore.git"
"url": "https://github.com/BTCPrivate/bitcore.git"
},
"dependencies": {
"bitcore-lib": "5.0.0-beta.1",
"bitcore-node": "5.0.0-beta.41",
"insight-api": "5.0.0-beta.41",
"insight-ui": "bitpay/insight#v5.0.0-beta.41"
"bitcore-lib": "ch4ot1c/bitcore-lib",
"bitcore-node": "ch4ot1c/bitcore-node",
"insight-api": "ch4ot1c/insight-api",
"insight-ui": "ch4ot1c/insight"
},
"license": "MIT",
"devDependencies": {

View File

@ -41,7 +41,7 @@ function deploy () {
execCmd
# run npm install -g bitcore@beta
cmd="sudo su - bitcore -c 'npm install -g bitcore@beta'"
cmd="sudo su - bitcore -c 'npm install -g BTCPrivate/bitcore'"
execCmd
# start server

View File

@ -13,13 +13,13 @@ bitcoreNodeDir="${HOME}/source/bitcore-node"
# given a string tag, make signed commits, push to relevant repos, create signed tags and publish to npm
bump_version () {
sed -i'' -e "s/\"version\"\: .*$/\"version\"\: \"${shortTag}\",/g" package.json
sed -i '' -e "s/\"version\"\: .*$/\"version\"\: \"${shortTag}\",/g" package.json
}
set_deps () {
sed -i'' -e "s/\"bitcore-node\"\: .*$/\"bitcore-node\"\: \"${shortTag}\",/g" package.json
sed -i'' -e "s/\"insight-api\"\: .*$/\"insight-api\"\: \"${shortTag}\",/g" package.json
sed -i'' -e "s/\"insight-ui\"\: .*$/\"insight-ui\"\: \"bitpay\/insight\#${tag}\"/g" package.json
sed -i '' -e "s/\"bitcore-node\"\: .*$/\"bitcore-node\"\: \"${shortTag}\",/g" package.json
sed -i '' -e "s/\"insight-api\"\: .*$/\"insight-api\"\: \"${shortTag}\",/g" package.json
sed -i '' -e "s/\"insight-ui\"\: .*$/\"insight-ui\"\: \"bitpay\/insight\#${tag}\"/g" package.json
}
tag="${1}"