Skip to content

Commit 66538ba

Browse files
authored
Update obfuscate.yml
1 parent 66a235e commit 66538ba

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/obfuscate.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,21 @@ jobs:
3636
const obfuscationOptions = {
3737
compact: true,
3838
controlFlowFlattening: true,
39-
controlFlowFlatteningThreshold: 1,
39+
controlFlowFlatteningThreshold: 0.75, // Lowered from 1
4040
deadCodeInjection: true,
41-
deadCodeInjectionThreshold: 1,
42-
debugProtection: true,
43-
debugProtectionInterval: 4000,
41+
deadCodeInjectionThreshold: 0.4, // Lowered from 1
42+
debugProtection: false, // Disabled
43+
debugProtectionInterval: 0,
4444
disableConsoleOutput: true,
4545
identifierNamesGenerator: 'hexadecimal',
4646
log: false,
4747
numbersToExpressions: true,
4848
renameGlobals: true,
49-
selfDefending: true,
49+
selfDefending: false, // Disabled
5050
simplify: true,
5151
stringArray: true,
5252
stringArrayEncoding: ['base64'],
53-
stringArrayThreshold: 1,
53+
stringArrayThreshold: 0.75, // Lowered from 1
5454
transformObjectKeys: true,
5555
unicodeEscapeSequence: false
5656
};

0 commit comments

Comments
 (0)