-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update all dependencies, tooling cleanup
This switches to Node 20, updates most dependencies to their latest version, and moves the obfuscator config to its own file. Also included is the script I wrote to rewrite a branch into a version that doesn't have the two hidden files in it.
- Loading branch information
Showing
9 changed files
with
2,673 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,24 @@ | ||
[*] | ||
charset=utf-8 | ||
end_of_line=crlf | ||
end_of_line=lf | ||
insert_final_newline=false | ||
indent_style=space | ||
indent_size=4 | ||
|
||
[{.babelrc,.stylelintrc,.eslintrc,jest.config,*.json,*.jsb3,*.jsb2,*.bowerrc}] | ||
indent_style=space | ||
indent_size=2 | ||
end_of_line=lf | ||
trim_trailing_whitespace=true | ||
|
||
[{*.ats,*.ts}] | ||
[{*.ats,*.ts,*.js}] | ||
indent_style=tab | ||
tab_width=4 | ||
end_of_line=lf | ||
trim_trailing_whitespace=true | ||
|
||
[tslint.json] | ||
indent_style=space | ||
indent_size=2 | ||
|
||
end_of_line=lf | ||
trim_trailing_whitespace=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nodejs 20.11.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"compact": false, | ||
"controlFlowFlattening": false, | ||
"deadCodeInjection": false, | ||
"debugProtection": false, | ||
"debugProtectionInterval": 0, | ||
"disableConsoleOutput": false, | ||
"identifierNamesGenerator": "hexadecimal", | ||
"log": false, | ||
"numbersToExpressions": false, | ||
"renameGlobals": false, | ||
"selfDefending": true, | ||
"simplify": true, | ||
"splitStrings": false, | ||
"stringArray": true, | ||
"stringArrayCallsTransform": false, | ||
"stringArrayCallsTransformThreshold": 0.5, | ||
"stringArrayEncoding": ["rc4"], | ||
"stringArrayIndexShift": true, | ||
"stringArrayRotate": true, | ||
"stringArrayShuffle": true, | ||
"stringArrayWrappersCount": 1, | ||
"stringArrayWrappersChainedCalls": true, | ||
"stringArrayWrappersParametersMaxCount": 2, | ||
"stringArrayWrappersType": "variable", | ||
"stringArrayThreshold": 1, | ||
"unicodeEscapeSequence": false | ||
} |
Oops, something went wrong.