Merge pull request #28 from colkito/fix/move-copaybundle

moved copayBundle.js
This commit is contained in:
Ryan X. Charles 2014-04-10 18:32:45 -03:00
commit d6a2f851bc
2 changed files with 2959 additions and 1 deletions

2958
js/copayBundle.js Normal file

File diff suppressed because it is too large Load Diff

View File

@ -63,7 +63,7 @@ if (require.main === module) {
.option('-o, --stdout', 'Specify output as stdout')
.parse(process.argv);
var copayBundle = createBundle(program);
copayBundle.pipe(program.stdout ? process.stdout : fs.createWriteStream('lib/copayBundle.js'));
copayBundle.pipe(program.stdout ? process.stdout : fs.createWriteStream('js/copayBundle.js'));
}
module.exports.createBundle = createBundle;