Skip to content

Commit

Permalink
add "real" 0.1.24 and 0.1.25, and...
Browse files Browse the repository at this point in the history
In this commit I have added the 'official' versions 0.1.24 and 0.1.25 to the
repo, and also created a new bitcore-dev.js that is not included in the repo.
bitcoin-dev.js is what we will use for development. When we define a new
version, we create a new bitcore-x.x.x.js file, and point bitcore-latest.js to
that. Note that the bitcore-x.x.x.js files should always be the "main" bundle,
which does not include BIP39 or BIP70, or other large packages.
  • Loading branch information
Ryan X. Charles committed Jul 8, 2014
1 parent 4e3b258 commit 153cb7a
Show file tree
Hide file tree
Showing 6 changed files with 475 additions and 146 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -10,3 +10,4 @@ tags
coverage
.DS_Store
docs
browser/bitcore-dev.js
258 changes: 118 additions & 140 deletions browser/bitcore-0.1.24.js

Large diffs are not rendered by default.

351 changes: 351 additions & 0 deletions browser/bitcore-0.1.25.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion browser/build.js
Expand Up @@ -184,7 +184,7 @@ if (require.main === module) {
var pjson = require('../package.json');
bitcoreBundle.pipe(
program.stdout ? process.stdout :
fs.createWriteStream('browser/bitcore-'+pjson.version+'.js'));
fs.createWriteStream('browser/bitcore-dev.js'));
}

module.exports.createBitcore = createBitcore;
Expand Down
7 changes: 3 additions & 4 deletions browser/testdata.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/index.html
Expand Up @@ -11,7 +11,7 @@
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../node_modules/chai/chai.js"></script>
<script>mocha.setup('bdd')</script>
<script src="../browser/bitcore-latest.js"></script>
<script src="../browser/bitcore-dev.js"></script>
<script src="../browser/testdata.js"></script>
<script src="adapter.js"></script>

Expand Down

0 comments on commit 153cb7a

Please sign in to comment.