-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEliminate.ts
126 lines (100 loc) · 2.81 KB
/
Eliminate.ts
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
import type Interface from "@playform/eliminate/Target/Interface/Option.js";
export const On = process.env["NODE_ENV"] === "development";
/**
* @module Option
*
*/
export default (
await import("@playform/eliminate/Target/Function/Merge.js")
).default((await import("@playform/pipe/Target/Variable/Option.js")).default, {
Action: {
Read: async ({ Input }) => {
console.log(`Processing: ${Input}`);
return await (
await import("node:fs/promises")
).readFile(Input, {
encoding: "utf-8",
});
},
Wrote: async ({ Buffer }) => {
try {
return (
await import(
"@playform/eliminate/Target/Function/Output.js"
)
).default(Buffer.toString(), {
Comment: true,
Debug: true,
});
} catch (_Error) {
console.log(_Error);
return Buffer;
}
},
Failed: async ({ Input }, _Error) => {
console.log(_Error);
return `Error: Cannot process file ${Input}`;
},
},
Path: new Map([
// [
// "./Dependency/Microsoft/Dependency/Editor/build",
// "./Dependency/Microsoft/Dependency/Editor/build",
// ],
// [
// "./Dependency/Microsoft/Dependency/Editor/extensions",
// "./Dependency/Microsoft/Dependency/Editor/extensions",
// ],
// [
// "./Dependency/Microsoft/Dependency/Editor/scripts",
// "./Dependency/Microsoft/Dependency/Editor/scripts",
// ],
// [
// "./Dependency/Microsoft/Dependency/Editor/Source",
// "./Dependency/Microsoft/Dependency/Editor/Source",
// ],
// [
// "./Dependency/Microsoft/Dependency/Editor/src/vs",
// "./Dependency/Microsoft/Dependency/Editor/src/vs",
// ],
// [
// "./Dependency/Microsoft/Dependency/Editor/src/vs/base",
// "./Dependency/Microsoft/Dependency/Editor/src/vs/base",
// ],
// [
// "./Dependency/Microsoft/Dependency/Editor/src/vs/code",
// "./Dependency/Microsoft/Dependency/Editor/src/vs/code",
// ],
// [
// "./Dependency/Microsoft/Dependency/Editor/src/vs/editor",
// "./Dependency/Microsoft/Dependency/Editor/src/vs/editor",
// ],
// [
// "./Dependency/Microsoft/Dependency/Editor/src/vs/platform",
// "./Dependency/Microsoft/Dependency/Editor/src/vs/platform",
// ],
// [
// "./Dependency/Microsoft/Dependency/Editor/src/vs/server",
// "./Dependency/Microsoft/Dependency/Editor/src/vs/server",
// ],
// [
// "./Dependency/Microsoft/Dependency/Editor/src/vs/workbench",
// "./Dependency/Microsoft/Dependency/Editor/src/vs/workbench",
// ],
[
"./Dependency/Microsoft/Dependency/Editor/src/vs/base/node",
"./Dependency/Microsoft/Dependency/Editor/src/vs/base/node",
],
]),
File: "**/*.ts",
Exclude: (File) =>
[
".d.ts",
"/test/",
"/tests/",
"/spec/",
"/mock/",
"/example/",
"/demo/",
].some((Pattern) => File.toLowerCase().indexOf(Pattern) !== -1),
} satisfies Interface as Interface);