autoformat more easy files

This commit is contained in:
Zeke Sikelianos 2016-03-25 12:57:17 -07:00 committed by Kevin Sawicki
parent 67fa250020
commit 3855a774ab
19 changed files with 1068 additions and 1076 deletions

View file

@ -1,36 +1,36 @@
const path = require('path');
const Module = require('module');
const path = require('path')
const Module = require('module')
// Clear Node's global search paths.
Module.globalPaths.length = 0;
Module.globalPaths.length = 0
// Clear current and parent(init.coffee)'s search paths.
module.paths = [];
module.paths = []
module.parent.paths = [];
module.parent.paths = []
// Prevent Node from adding paths outside this app to search paths.
Module._nodeModulePaths = function(from) {
var dir, i, part, parts, paths, skipOutsidePaths, splitRe, tip;
from = path.resolve(from);
Module._nodeModulePaths = function (from) {
var dir, i, part, parts, paths, skipOutsidePaths, splitRe, tip
from = path.resolve(from)
// If "from" is outside the app then we do nothing.
skipOutsidePaths = from.startsWith(process.resourcesPath);
skipOutsidePaths = from.startsWith(process.resourcesPath)
// Following logoic is copied from module.js.
splitRe = process.platform === 'win32' ? /[\/\\]/ : /\//;
paths = [];
parts = from.split(splitRe);
splitRe = process.platform === 'win32' ? /[\/\\]/ : /\//
paths = []
parts = from.split(splitRe)
for (tip = i = parts.length - 1; i >= 0; tip = i += -1) {
part = parts[tip];
part = parts[tip]
if (part === 'node_modules') {
continue;
continue
}
dir = parts.slice(0, tip + 1).join(path.sep);
dir = parts.slice(0, tip + 1).join(path.sep)
if (skipOutsidePaths && !dir.startsWith(process.resourcesPath)) {
break;
break
}
paths.push(path.join(dir, 'node_modules'));
paths.push(path.join(dir, 'node_modules'))
}
return paths;
};
return paths
}