-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhooks.js
45 lines (38 loc) · 1.02 KB
/
hooks.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env node
const { cleanRegistry } = require('./cli')
function preuninstall(){
if(ifNeedClean()){
console.log('preuninstall run success : clean .nrmrc info')
return cleanRegistry();
};
console.log('preuninstall run success : keep .nrmrc info')
process.exit();
}
function ifNeedClean(){
if(process.env.npm_config_clean){
return true
}else{
const envArgv = process.env.npm_config_argv || '{"original":[]}';
const envOriginal = JSON.parse(envArgv).original;
return envOriginal.includes('-C')
}
}
function isLocalDebug(argv){
let debugTarget = null;
argv.forEach(item=>{
// use node hooks.js --LocalDebugging=preuninstall
if(item.startsWith('--LocalDebugging=')){
debugTarget = item.split('=')[1]
}
})
return debugTarget;
}
function run (argv) {
const target = isLocalDebug(argv) || process.env.npm_lifecycle_event;
switch(target){
case 'preuninstall':
preuninstall(argv);break;
default: process.exit(0)
}
}
run(process.argv.slice(2));