openinstall-react-native
Version:
openinstall sdk plugin for react-native
69 lines (56 loc) • 1.83 kB
JavaScript
var fs = require('fs');
var spath = require('path');
var os = require('os');
function getAllfiles(dir, findOne) {
// if (arguments.length < 2) throw new TypeError('Bad arguments number');
if (typeof findOne !== 'function') {
throw new TypeError('The argument "findOne" must be a function');
}
eachFileSync(spath.resolve(dir), findOne);
}
function eachFileSync (dir, findOne) {
var stats = fs.statSync(dir);
var files = fullPath(dir, fs.readdirSync(dir));
files.forEach(function (item) {
findOne(item, stats);
});
}
function fullPath (dir, files) {
return files.map(function (f) {
return spath.join(dir, f);
});
}
getPackageJson("./../..", function (f, s) {
var isPackageJson = f.match(/package\.json/);
if (isPackageJson != null) {
console.log("find package.json file: " + f);
if (isFile(f) == false) {
console.log("configure package.json error!!");
return;
}
var rf = fs.readFileSync(f, "utf-8");
var searchKey = rf.match(/\n.*\"scripts\"\: \{\n/);
if (/openinstall/.test(rf)) {
return;
}
if (searchKey != null) {
rf = rf.replace(searchKey[0], searchKey[0] + " \"openinstall\"\: \"node node_modules\/openinstall-react-native\/\openinstallConfig.js\"\,\n");
fs.writeFileSync(f, rf, "utf-8");
}
}
});
function getPackageJson(dir, findOne) {
if (typeof findOne !== 'function') {
throw new TypeError('The argument "findOne" must be a function');
}
eachFileSync(spath.resolve(dir), findOne);
}
function isFile(path){
return exists(path) && fs.statSync(path).isFile();
}
function exists(path){
return fs.existsSync(path) || path.existsSync(path);
}
function isDir(path){
return exists(path) && fs.statSync(path).isDirectory();
}