X7ROOT File Manager
Current Path:
/opt/alt/alt-nodejs6/root/usr/lib/node_modules/npm/lib/install
opt
/
alt
/
alt-nodejs6
/
root
/
usr
/
lib
/
node_modules
/
npm
/
lib
/
install
/
ðŸ“
..
📄
access-error.js
(202 B)
ðŸ“
action
📄
actions.js
(4.97 KB)
📄
and-add-parent-to-errors.js
(324 B)
📄
and-finish-tracker.js
(360 B)
📄
and-ignore-errors.js
(204 B)
📄
build-path.js
(243 B)
📄
check-permissions.js
(1.85 KB)
📄
copy-tree.js
(625 B)
📄
decompose-actions.js
(1.54 KB)
📄
deps.js
(23.23 KB)
📄
diff-trees.js
(5.01 KB)
📄
exists.js
(775 B)
📄
filter-invalid-actions.js
(1 KB)
📄
flatten-tree.js
(1023 B)
📄
inflate-bundled.js
(492 B)
📄
inflate-shrinkwrap.js
(3.65 KB)
📄
is-dev-dep.js
(175 B)
📄
is-extraneous.js
(889 B)
📄
is-fs-access-available.js
(763 B)
📄
is-opt-dep.js
(185 B)
📄
is-prod-dep.js
(172 B)
📄
is-registry-specifier.js
(172 B)
📄
mutate-into-logical-tree.js
(4.22 KB)
📄
node.js
(1.43 KB)
📄
read-shrinkwrap.js
(884 B)
📄
realize-shrinkwrap-specifier.js
(661 B)
📄
report-optional-failure.js
(1.02 KB)
📄
save.js
(6.38 KB)
📄
update-package-json.js
(1.52 KB)
📄
validate-args.js
(1.82 KB)
📄
validate-tree.js
(2.55 KB)
📄
writable.js
(1 KB)
Editing: validate-tree.js
'use strict' var path = require('path') var validate = require('aproba') var asyncMap = require('slide').asyncMap var chain = require('slide').chain var npmInstallChecks = require('npm-install-checks') var checkGit = npmInstallChecks.checkGit var clone = require('lodash.clonedeep') var normalizePackageData = require('normalize-package-data') var npm = require('../npm.js') var andFinishTracker = require('./and-finish-tracker.js') var flattenTree = require('./flatten-tree.js') var validateAllPeerDeps = require('./deps.js').validateAllPeerDeps var packageId = require('../utils/package-id.js') module.exports = function (idealTree, log, next) { validate('OOF', arguments) var moduleMap = flattenTree(idealTree) var modules = Object.keys(moduleMap).map(function (name) { return moduleMap[name] }) chain([ [asyncMap, modules, function (mod, done) { chain([ mod.parent && !mod.isLink && [checkGit, mod.realpath], [checkErrors, mod, idealTree] ], done) }], [thenValidateAllPeerDeps, idealTree], [thenCheckTop, idealTree] ], andFinishTracker(log, next)) } function checkErrors (mod, idealTree, next) { if (mod.error && (mod.parent || path.resolve(npm.globalDir, '..') !== mod.path)) idealTree.warnings.push(mod.error) next() } function thenValidateAllPeerDeps (idealTree, next) { validate('OF', arguments) validateAllPeerDeps(idealTree, function (tree, pkgname, version) { var warn = new Error(packageId(tree) + ' requires a peer of ' + pkgname + '@' + version + ' but none was installed.') warn.code = 'EPEERINVALID' idealTree.warnings.push(warn) }) next() } function thenCheckTop (idealTree, next) { validate('OF', arguments) if (idealTree.package.error) return next() // FIXME: when we replace read-package-json with something less magic, // this should done elsewhere. // As it is, the package has already been normalized and thus some // errors are suppressed. var pkg = clone(idealTree.package) try { normalizePackageData(pkg, function (warn) { var warnObj = new Error(packageId(idealTree) + ' ' + warn) warnObj.code = 'EPACKAGEJSON' idealTree.warnings.push(warnObj) }, false) } catch (er) { er.code = 'EPACKAGEJSON' idealTree.warnings.push(er) } var nodeVersion = npm.config.get('node-version') if (/-/.test(nodeVersion)) { // if this is a prerelease node… var warnObj = new Error('You are using a pre-release version of node and things may not work as expected') warnObj.code = 'ENODEPRE' idealTree.warnings.push(warnObj) } next() }
Upload File
Create Folder