mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2025-09-07 07:27:20 +00:00
push all website files
This commit is contained in:
17
website/node_modules/npm/lib/install/action/global-install.js
generated
vendored
Normal file
17
website/node_modules/npm/lib/install/action/global-install.js
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
'use strict'
|
||||
var path = require('path')
|
||||
var npm = require('../../npm.js')
|
||||
var Installer = require('../../install.js').Installer
|
||||
var packageId = require('../../utils/package-id.js')
|
||||
|
||||
module.exports = function (staging, pkg, log, next) {
|
||||
log.silly('global-install', packageId(pkg))
|
||||
var globalRoot = path.resolve(npm.globalDir, '..')
|
||||
npm.config.set('global', true)
|
||||
var install = new Installer(globalRoot, false, [pkg.package.name + '@' + pkg.package._requested.fetchSpec])
|
||||
install.link = false
|
||||
install.run(function () {
|
||||
npm.config.set('global', false)
|
||||
next.apply(null, arguments)
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user