Add patches for ripple-lib core

This commit is contained in:
wltsmrz
2015-11-13 15:24:27 -08:00
committed by Nik Bougalis
parent 2401b44bed
commit f2dfde3ee1
7 changed files with 5076 additions and 0 deletions

12
test/pretest.js Normal file
View File

@@ -0,0 +1,12 @@
var fs = require('fs');
var path = require('path');
var joinPath = path.join.bind(path, __dirname);
fs.readdirSync(joinPath('ripple-lib')).forEach(function(fileName) {
var src_path = joinPath('ripple-lib', fileName);
var dst_path = joinPath('../node_modules/ripple-lib/dist/npm/core/', fileName);
console.log(src_path + ' > ' + dst_path);
fs.writeFileSync(dst_path, fs.readFileSync(src_path));
});