PHP 8.2.30
Preview: validate-args.js Size: 2.45 KB
/proc/thread-self/root/proc/self/root/opt/alt/alt-nodejs9/root/lib/node_modules/npm/lib/install/validate-args.js

'use strict'
var validate = require('aproba')
var asyncMap = require('slide').asyncMap
var chain = require('slide').chain
var npmInstallChecks = require('npm-install-checks')
var iferr = require('iferr')
var checkEngine = npmInstallChecks.checkEngine
var checkPlatform = npmInstallChecks.checkPlatform
var npm = require('../npm.js')

module.exports = function (idealTree, args, next) {
  validate('OAF', arguments)
  var force = npm.config.get('force')

  asyncMap(args, function (pkg, done) {
    chain([
      [hasMinimumFields, pkg],
      [checkSelf, idealTree, pkg, force],
      [isInstallable, pkg]
    ], done)
  }, next)
}

function hasMinimumFields (pkg, cb) {
  if (pkg.name === '' || pkg.name == null) {
    return cb(new Error(`Can't install ${pkg._resolved}: Missing package name`))
  } else if (pkg.version === '' || pkg.version == null) {
    return cb(new Error(`Can't install ${pkg._resolved}: Missing package version`))
  } else {
    return cb()
  }
}

function getWarnings (pkg) {
  while (pkg.parent) pkg = pkg.parent
  if (!pkg.warnings) pkg.warnings = []
  return pkg.warnings
}

var isInstallable = module.exports.isInstallable = function (pkg, next) {
  var force = npm.config.get('force')
  var nodeVersion = npm.config.get('node-version')
  if (/-/.test(nodeVersion)) {
    // for the purposes of validation, if the node version is a prerelease,
    // strip that. We check and warn about this sceanrio over in validate-tree.
    nodeVersion = nodeVersion.replace(/-.*/, '')
  }
  var strict = npm.config.get('engine-strict')
  checkEngine(pkg, npm.version, nodeVersion, force, strict, iferr(next, thenWarnEngineIssues))
  function thenWarnEngineIssues (warn) {
    if (warn) getWarnings(pkg).push(warn)
    checkPlatform(pkg, force, next)
  }
}

function checkSelf (idealTree, pkg, force, next) {
  if (idealTree.package && idealTree.package.name !== pkg.name) return next()
  if (force) {
    var warn = new Error("Wouldn't install " + pkg.name + ' as a dependency of itself, but being forced')
    warn.code = 'ENOSELF'
    idealTree.warnings.push(warn)
    next()
  } else {
    var er = new Error('Refusing to install package with name "' + pkg.name +
     '" under a package\n' +
     'also called "' + pkg.name + '". Did you name your project the same\n' +
     'as the dependency you\'re installing?\n\n' +
     'For more information, see:\n' +
     '    <https://docs.npmjs.com/cli/install#limitations-of-npms-install-algorithm>')
    er.code = 'ENOSELF'
    next(er)
  }
}

Directory Contents

Dirs: 1 × Files: 33

Name Size Perms Modified Actions
action DIR
- drwxr-xr-x 2024-03-03 22:42:04
Edit Download
202 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
5.52 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
324 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
360 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
204 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
1.85 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
881 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
1.81 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
26.41 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
8.52 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
775 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
1021 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
427 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
628 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
7.24 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
175 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
618 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
763 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
1.19 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
462 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
185 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
172 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
259 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
4.52 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
1.85 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
1.97 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
621 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
1.02 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
5.60 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
1.87 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
2.45 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
3.10 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
1.00 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).