Uh oh!
There was an error while loading. Please reload this page.
forked from microsoft/vscode
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostinstall.mjs
More file actions
Latest commit
55 lines (47 loc) · 1.46 KB
/
Copy pathpostinstall.mjs
File metadata and controls
55 lines (47 loc) · 1.46 KB
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
46
47
48
49
50
51
52
53
54
55
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import*asfsfrom'fs';
importpathfrom'path';
import{fileURLToPath}from'url';
constroot=path.join(path.dirname(fileURLToPath(import.meta.url)),'node_modules','typescript');
functionprocessRoot(){
consttoKeep=newSet([
'lib',
'package.json',
]);
for(constnameoffs.readdirSync(root)){
if(!toKeep.has(name)){
constfilePath=path.join(root,name);
console.log(`Removed ${filePath}`);
fs.rmSync(filePath,{recursive: true});
}
}
}
functionprocessLib(){
consttoDelete=newSet([
'tsc.js',
'typescriptServices.js',
]);
constlibRoot=path.join(root,'lib');
for(constnameoffs.readdirSync(libRoot)){
if(name==='lib.d.ts'||name.match(/^lib\..*\.d\.ts$/)||name==='protocol.d.ts'){
continue;
}
if(name==='typescript.js'||name==='typescript.d.ts'){
// used by html and extension editing
continue;
}
if(toDelete.has(name)||name.match(/\.d\.ts$/)){
try{
fs.unlinkSync(path.join(libRoot,name));
console.log(`removed '${path.join(libRoot,name)}'`);
}catch(e){
console.warn(e);
}
}
}
}
processRoot();
processLib();