-
Notifications
You must be signed in to change notification settings - Fork 517
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Chris Clark
committed
May 14, 2015
1 parent
e66978f
commit 398f8d0
Showing
17 changed files
with
94 additions
and
75 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
|
||
# Ignore object files. | ||
*.o | ||
build/*.js | ||
build/ | ||
tags | ||
bin/rippled | ||
Debug/*.* | ||
|
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
lib-cov | ||
coverage.html | ||
src | ||
dist/bower |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -17,15 +17,15 @@ echo "publish to npm" | |
npm publish | ||
exit_on_error | ||
|
||
rm -rf dist | ||
rm -rf dist/bower | ||
echo "" | ||
echo "publish to bower" | ||
|
||
git clone [email protected]:ripple/bower-ripple.git dist | ||
git clone [email protected]:ripple/bower-ripple.git dist/bower | ||
gulp bower | ||
exit_on_error | ||
|
||
cd dist | ||
cd dist/bower | ||
version=$(cat bower.json | grep -Eo '([0-9]\.?)+(-rc[0-9])?') | ||
echo "version: $version" | ||
git add ripple.js ripple-debug.js ripple-min.js bower.json | ||
|
@@ -40,4 +40,4 @@ exit_on_error | |
git push origin master | ||
git push --tags origin master | ||
|
||
cd .. | ||
cd .. |
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 |
---|---|---|
|
@@ -17,15 +17,15 @@ echo "publish rc to npm" | |
npm publish --tag beta | ||
exit_on_error | ||
|
||
rm -rf dist | ||
rm -rf dist/bower | ||
echo "" | ||
echo "publish to bower" | ||
|
||
git clone [email protected]:ripple/bower-ripple.git dist | ||
git clone [email protected]:ripple/bower-ripple.git dist/bower | ||
gulp bower | ||
exit_on_error | ||
|
||
cd dist | ||
cd dist/bower | ||
version=$(cat bower.json | grep -Eo '([0-9]\.?)+(-rc[0-9])?') | ||
echo "version: $version" | ||
git add ripple.js ripple-debug.js ripple-min.js bower.json | ||
|
@@ -40,4 +40,4 @@ exit_on_error | |
git push origin master | ||
git push --tags origin master | ||
|
||
cd .. | ||
cd .. |
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
rm -rf dist | ||
git clone [email protected]:ripple/bower-ripple.git dist | ||
rm -rf dist/bower | ||
git clone [email protected]:ripple/bower-ripple.git dist/bower | ||
gulp bower | ||
cd dist | ||
cd dist/bower | ||
version=$(cat bower.json | grep -Eo '([0-9]\.?)+(-rc[0-9])?') | ||
echo "version: $version" | ||
git add ripple.js ripple-debug.js ripple-min.js bower.json | ||
git commit -m "[TASK] add v$version" | ||
git tag "v$version" | ||
git push origin master | ||
git push --tags origin master | ||
cd .. | ||
cd .. |
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
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
--reporter spec --timeout 10000 --slow 500 | ||
--reporter spec --timeout 10000 --slow 500 --compilers js:babel/register |
Oops, something went wrong.