This commit is contained in:
Daniel Scalzi
2023-02-12 19:11:46 -05:00
parent f9041a6dfc
commit 82967469e9
5 changed files with 103 additions and 1922 deletions

2
.nvmrc
View File

@@ -1 +1 @@
16
18

View File

@@ -4,7 +4,7 @@ Generate a distribution.json for Helios. Documentation on this format can be fou
## Requirements
* Node.js 16
* Node.js 18
* Java 8+ (https://adoptopenjdk.net/)
* This is required to run the forge installer, process [XZ](https://tukaani.org/xz/format.html) files, and run bytecode analysis on mod files.
* Although 1.17 requires Java 16, the forge installer works with Java 8.

2001
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -31,14 +31,14 @@
"@types/fs-extra": "^11.0.1",
"@types/luxon": "^3.2.0",
"@types/minimatch": "^5.1.2",
"@types/node": "^16.18.11",
"@types/node": "^18.13.0",
"@types/triple-beam": "^1.3.2",
"@types/yargs": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.32.0",
"rimraf": "^4.0.5",
"typescript": "^4.9.4"
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.34.0",
"rimraf": "^4.1.2",
"typescript": "^4.9.5"
},
"dependencies": {
"dotenv": "^16.0.3",
@@ -46,7 +46,7 @@
"got": "^11.8.6",
"helios-distribution-types": "^1.1.0",
"luxon": "^3.2.1",
"minimatch": "^6.0.0",
"minimatch": "^6.1.8",
"node-stream-zip": "^1.15.0",
"toml": "^3.0.0",
"triple-beam": "^1.3.0",

View File

@@ -2,9 +2,9 @@
"compilerOptions": {
/* Basic Options */
// "incremental": true, /* Enable incremental compilation */
"target": "ES2021", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
"target": "ES2022", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"lib": ["ES2021"], /* Specify library files to be included in the compilation. */
"lib": ["ES2022"], /* Specify library files to be included in the compilation. */
// "allowJs": true, /* Allow javascript files to be compiled. */
// "checkJs": true, /* Report errors in .js files. */
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */