Compare commits
10 Commits
9f6220b508
...
539a5b9efb
| Author | SHA1 | Date | |
|---|---|---|---|
| 539a5b9efb | |||
|
|
90588dd23c | ||
|
|
5f6c58d863 | ||
|
|
b783e4784d | ||
|
|
76ab09a010 | ||
|
|
8b528959bc | ||
|
|
318452e44e | ||
|
|
1a537e33f4 | ||
|
|
11f8a72e8a | ||
|
|
5da3d6cf5f |
@@ -1,2 +1,3 @@
|
|||||||
node_modules
|
node_modules
|
||||||
dist
|
dist
|
||||||
|
.eslintrc.cjs
|
||||||
54
.eslintrc.cjs
Normal file
54
.eslintrc.cjs
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
module.exports = {
|
||||||
|
root: true,
|
||||||
|
plugins: [
|
||||||
|
'@typescript-eslint'
|
||||||
|
],
|
||||||
|
parser: '@typescript-eslint/parser',
|
||||||
|
parserOptions: {
|
||||||
|
project: true,
|
||||||
|
tsconfigRootDir: __dirname
|
||||||
|
},
|
||||||
|
extends: [
|
||||||
|
'eslint:recommended',
|
||||||
|
'plugin:@typescript-eslint/recommended-type-checked',
|
||||||
|
'plugin:@typescript-eslint/stylistic-type-checked'
|
||||||
|
],
|
||||||
|
rules: {
|
||||||
|
semi: 'off',
|
||||||
|
'@typescript-eslint/semi': [
|
||||||
|
'error',
|
||||||
|
'never'
|
||||||
|
],
|
||||||
|
quotes: 'off',
|
||||||
|
'@typescript-eslint/quotes': [
|
||||||
|
'error',
|
||||||
|
'single'
|
||||||
|
],
|
||||||
|
indent: 'off',
|
||||||
|
'@typescript-eslint/indent': [
|
||||||
|
'error',
|
||||||
|
4
|
||||||
|
],
|
||||||
|
'@typescript-eslint/member-delimiter-style': [
|
||||||
|
'error',
|
||||||
|
{
|
||||||
|
multiline: {
|
||||||
|
delimiter: 'none',
|
||||||
|
requireLast: false
|
||||||
|
},
|
||||||
|
singleline: {
|
||||||
|
delimiter: 'comma',
|
||||||
|
requireLast: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
||||||
|
'@typescript-eslint/explicit-function-return-type': ['warn'],
|
||||||
|
'@typescript-eslint/restrict-template-expressions': 'off',
|
||||||
|
'@typescript-eslint/require-await': 'off',
|
||||||
|
'@typescript-eslint/no-unsafe-member-access': 'off',
|
||||||
|
'@typescript-eslint/no-unsafe-call': 'off',
|
||||||
|
'@typescript-eslint/consistent-indexed-object-style': 'off',
|
||||||
|
'@typescript-eslint/prefer-nullish-coalescing': 'off'
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
{
|
|
||||||
"root": true,
|
|
||||||
"parser": "@typescript-eslint/parser",
|
|
||||||
"plugins": [
|
|
||||||
"@typescript-eslint"
|
|
||||||
],
|
|
||||||
"extends": [
|
|
||||||
"eslint:recommended",
|
|
||||||
"plugin:@typescript-eslint/recommended"
|
|
||||||
],
|
|
||||||
"rules": {
|
|
||||||
"semi": "off",
|
|
||||||
"@typescript-eslint/semi": [
|
|
||||||
"error",
|
|
||||||
"never"
|
|
||||||
],
|
|
||||||
"quotes": "off",
|
|
||||||
"@typescript-eslint/quotes": [
|
|
||||||
"error",
|
|
||||||
"single"
|
|
||||||
],
|
|
||||||
"indent": "off",
|
|
||||||
"@typescript-eslint/indent": [
|
|
||||||
"error",
|
|
||||||
4
|
|
||||||
],
|
|
||||||
"@typescript-eslint/member-delimiter-style": [
|
|
||||||
"error",
|
|
||||||
{
|
|
||||||
"multiline": {
|
|
||||||
"delimiter": "none",
|
|
||||||
"requireLast": false
|
|
||||||
},
|
|
||||||
"singleline": {
|
|
||||||
"delimiter": "comma",
|
|
||||||
"requireLast": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"@typescript-eslint/no-non-null-assertion": "off",
|
|
||||||
"@typescript-eslint/explicit-function-return-type": ["warn"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
2
.vscode/launch.json
vendored
2
.vscode/launch.json
vendored
@@ -24,7 +24,7 @@
|
|||||||
"name": "Install Dev Distribution",
|
"name": "Install Dev Distribution",
|
||||||
"program": "${workspaceFolder}\\src\\index.ts",
|
"program": "${workspaceFolder}\\src\\index.ts",
|
||||||
"args": [
|
"args": [
|
||||||
"g", "distro", "dev_distribution", "--installLocal"
|
"g", "distro", "distribution_dev", "--installLocal"
|
||||||
],
|
],
|
||||||
"preLaunchTask": "build",
|
"preLaunchTask": "build",
|
||||||
"outFiles": [
|
"outFiles": [
|
||||||
|
|||||||
BIN
PatataPack/cache/forge/1.20.1-47.3.7/forge-1.20.1-47.3.7-installer.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/forge-1.20.1-47.3.7-installer.jar
vendored
Normal file
Binary file not shown.
1
PatataPack/cache/forge/1.20.1-47.3.7/launcher_profiles.json
vendored
Normal file
1
PatataPack/cache/forge/1.20.1-47.3.7/launcher_profiles.json
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{}
|
||||||
Binary file not shown.
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/github/jponge/lzma-java/1.3/lzma-java-1.3.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/github/jponge/lzma-java/1.3/lzma-java-1.3.jar
vendored
Normal file
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/github/oshi/oshi-core/5.8.5/oshi-core-5.8.5.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/github/oshi/oshi-core/5.8.5/oshi-core-5.8.5.jar
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
vendored
Normal file
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/google/guava/guava/25.1-jre/guava-25.1-jre.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/google/guava/guava/25.1-jre/guava-25.1-jre.jar
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/ibm/icu/icu4j/70.1/icu4j-70.1.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/ibm/icu/icu4j/70.1/icu4j-70.1.jar
vendored
Normal file
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/mojang/authlib/3.3.39/authlib-3.3.39.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/mojang/authlib/3.3.39/authlib-3.3.39.jar
vendored
Normal file
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/mojang/blocklist/1.0.10/blocklist-1.0.10.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/mojang/blocklist/1.0.10/blocklist-1.0.10.jar
vendored
Normal file
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/mojang/brigadier/1.0.18/brigadier-1.0.18.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/mojang/brigadier/1.0.18/brigadier-1.0.18.jar
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/mojang/javabridge/1.2.24/javabridge-1.2.24.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/mojang/javabridge/1.2.24/javabridge-1.2.24.jar
vendored
Normal file
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/mojang/logging/1.0.0/logging-1.0.0.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/mojang/logging/1.0.0/logging-1.0.0.jar
vendored
Normal file
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/mojang/patchy/2.2.10/patchy-2.2.10.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/mojang/patchy/2.2.10/patchy-2.2.10.jar
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/mojang/text2speech/1.12.4/text2speech-1.12.4.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/mojang/text2speech/1.12.4/text2speech-1.12.4.jar
vendored
Normal file
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/nothome/javaxdelta/2.0.1/javaxdelta-2.0.1.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/com/nothome/javaxdelta/2.0.1/javaxdelta-2.0.1.jar
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar
vendored
Normal file
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/commons-io/commons-io/2.4/commons-io-2.4.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/commons-io/commons-io/2.4/commons-io-2.4.jar
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/cpw/mods/modlauncher/10.0.9/modlauncher-10.0.9.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/cpw/mods/modlauncher/10.0.9/modlauncher-10.0.9.jar
vendored
Normal file
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/cpw/mods/modlauncher/9.1.3/modlauncher-9.1.3.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/cpw/mods/modlauncher/9.1.3/modlauncher-9.1.3.jar
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/de/siegmar/fastcsv/2.2.2/fastcsv-2.2.2.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/de/siegmar/fastcsv/2.2.2/fastcsv-2.2.2.jar
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/net/java/dev/jna/jna/5.10.0/jna-5.10.0.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/net/java/dev/jna/jna/5.10.0/jna-5.10.0.jar
vendored
Normal file
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/net/jodah/typetools/0.6.3/typetools-0.6.3.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/net/jodah/typetools/0.6.3/typetools-0.6.3.jar
vendored
Normal file
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/net/jodah/typetools/0.8.3/typetools-0.8.3.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/net/jodah/typetools/0.8.3/typetools-0.8.3.jar
vendored
Normal file
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,3 @@
|
|||||||
|
Input: c3ec587af28e5a785c0b4a7b8a30f9a8f78f838
|
||||||
|
Srg: 67dc0f086ea40e91fd4ae15124fa888e6803844f
|
||||||
|
Output: 8c5a95cbce940cfdb304376ae9fea47968d02587
|
||||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -0,0 +1,3 @@
|
|||||||
|
Input: c3ec587af28e5a785c0b4a7b8a30f9a8f78f838
|
||||||
|
Srg: 67dc0f086ea40e91fd4ae15124fa888e6803844f
|
||||||
|
Output: de86b035d2da0f78940796bb95c39a932ed84834
|
||||||
Binary file not shown.
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/net/minecraftforge/JarJar/0.3.0/JarJar-0.3.0.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/net/minecraftforge/JarJar/0.3.0/JarJar-0.3.0.jar
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/net/minecraftforge/coremods/5.0.1/coremods-5.0.1.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/net/minecraftforge/coremods/5.0.1/coremods-5.0.1.jar
vendored
Normal file
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/net/minecraftforge/coremods/5.1.6/coremods-5.1.6.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/net/minecraftforge/coremods/5.1.6/coremods-5.1.6.jar
vendored
Normal file
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/net/minecraftforge/eventbus/5.0.3/eventbus-5.0.3.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/net/minecraftforge/eventbus/5.0.3/eventbus-5.0.3.jar
vendored
Normal file
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/net/minecraftforge/eventbus/6.0.5/eventbus-6.0.5.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/net/minecraftforge/eventbus/6.0.5/eventbus-6.0.5.jar
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/net/minecraftforge/forgespi/7.0.1/forgespi-7.0.1.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/net/minecraftforge/forgespi/7.0.1/forgespi-7.0.1.jar
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/net/minecraftforge/srgutils/0.4.3/srgutils-0.4.3.jar
vendored
Normal file
BIN
PatataPack/cache/forge/1.20.1-47.3.7/libraries/net/minecraftforge/srgutils/0.4.3/srgutils-0.4.3.jar
vendored
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user