Skip to content

Commit

Permalink
uwu
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonlaubb committed Dec 8, 2024
1 parent 471e3f6 commit 90a66b4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions compresser.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,13 @@ async function obfuscateFile(filePath) {
stringArray: false,
deadCodeInjection: false,
renameProperties: false,
renameGlobals: false,
renameGlobals: true,
stringArrayIndexShift: false,
selfDefending: true,
identifierNamesGenerator: 'hexadecimal',
numbersToExpressions: false,
});
await fs.promises.writeFile(filePath, fixedStart + obfuscatedCode.getObfuscatedCode());
await fs.promises.writeFile(filePath, obfuscatedCode.getObfuscatedCode());
}
let bar;
async function onStart() {
Expand Down
Binary file removed test-7.mcaddon
Binary file not shown.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"noImplicitThis": true,
"noUnusedParameters": true,
"sourceMap": false,
"removeComments": false,
"removeComments": true,
"allowSyntheticDefaultImports": false,
"noEmitOnError": false, // Still emit on error
}
Expand Down

0 comments on commit 90a66b4

Please sign in to comment.