mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 07:59:24 +03:00
add info del and info if found unk var
This commit is contained in:
parent
dcdadb1fb8
commit
503921ad83
8
op.js
8
op.js
@ -451,6 +451,10 @@ function clean_proto_gen() {
|
||||
const read = fs.readFileSync(file);
|
||||
var rd = read.toString();
|
||||
|
||||
if (file.match("Unk")) {
|
||||
console.log("unk: " + file);
|
||||
}
|
||||
|
||||
// find import
|
||||
while ((m = regex.exec(rd)) !== null) {
|
||||
// This is necessary to avoid infinite loops with zero-width matches
|
||||
@ -465,6 +469,9 @@ function clean_proto_gen() {
|
||||
if (found_rt) {
|
||||
//console.log(`Skip ${match}`);
|
||||
} else {
|
||||
if (match.match("Unk") || file.match("Unk")) {
|
||||
console.log(file + " require " + match);
|
||||
}
|
||||
var subdata = new Object();
|
||||
subdata["name"] = match;
|
||||
file_toaddmore.push(subdata);
|
||||
@ -505,6 +512,7 @@ function clean_proto_gen() {
|
||||
|
||||
if (todoremove) {
|
||||
found_needclean++;
|
||||
console.log("Remove file: "+file);
|
||||
try {
|
||||
fs.unlinkSync(file);
|
||||
//file removed
|
||||
|
Loading…
Reference in New Issue
Block a user