-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIRROR] TGUI: updated dependencies (#2728)
* TGUI: updated dependencies * Fixing conflicts, lock file --------- Co-authored-by: NovaBot <[email protected]> Co-authored-by: Jeremiah <[email protected]> Co-authored-by: Mal <[email protected]> Co-authored-by: Iajret <[email protected]>
- Loading branch information
1 parent
becc737
commit 9ac4b26
Showing
17 changed files
with
2,303 additions
and
3,140 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env node | ||
|
||
const {existsSync} = require(`fs`); | ||
const {createRequire} = require(`module`); | ||
const {resolve} = require(`path`); | ||
|
||
const relPnpApiPath = "../../../../.pnp.cjs"; | ||
|
||
const absPnpApiPath = resolve(__dirname, relPnpApiPath); | ||
const absRequire = createRequire(absPnpApiPath); | ||
|
||
if (existsSync(absPnpApiPath)) { | ||
if (!process.versions.pnp) { | ||
// Setup the environment to be able to require eslint/use-at-your-own-risk | ||
require(absPnpApiPath).setup(); | ||
} | ||
} | ||
|
||
// Defer to the real eslint/use-at-your-own-risk your application uses | ||
module.exports = absRequire(`eslint/use-at-your-own-risk`); |
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,9 +1,14 @@ | ||
{ | ||
"name": "eslint", | ||
"version": "7.32.0-sdk", | ||
"version": "8.57.0-sdk", | ||
"main": "./lib/api.js", | ||
"type": "commonjs", | ||
"bin": { | ||
"eslint": "./bin/eslint.js" | ||
}, | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": "./lib/api.js", | ||
"./use-at-your-own-risk": "./lib/unsupported-api.js" | ||
} | ||
} |
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
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,7 +1,7 @@ | ||
{ | ||
"private": true, | ||
"name": "tgui-workspace", | ||
"version": "5.0.0", | ||
"version": "5.0.1", | ||
"packageManager": "[email protected]", | ||
"workspaces": [ | ||
"packages/*" | ||
|
@@ -22,36 +22,35 @@ | |
"tgui:eslint-fix": "eslint --fix packages --ext .js,.cjs,.ts,.tsx" | ||
}, | ||
"dependencies": { | ||
"@swc/core": "^1.3.100", | ||
"@swc/jest": "^0.2.29", | ||
"@types/jest": "^29.5.10", | ||
"@types/jsdom": "^21.1.6", | ||
"@types/node": "^14.x", | ||
"@types/webpack": "^5.28.5", | ||
"@swc/core": "^1.4.11", | ||
"@swc/jest": "^0.2.36", | ||
"@types/jest": "^29.5.12", | ||
"@types/node": "^20.12.3", | ||
"@types/webpack-env": "^1.18.4", | ||
"@typescript-eslint/parser": "^6.14.0", | ||
"css-loader": "^6.8.1", | ||
"esbuild-loader": "^4.0.2", | ||
"eslint": "^8.56.0", | ||
"@typescript-eslint/parser": "^7.5.0", | ||
"@typescript-eslint/utils": "^7.5.0", | ||
"css-loader": "^6.10.0", | ||
"esbuild-loader": "^4.1.0", | ||
"eslint": "^8.57.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-react": "^7.33.2", | ||
"eslint-plugin-simple-import-sort": "^10.0.0", | ||
"eslint-plugin-sonarjs": "^0.23.0", | ||
"eslint-plugin-unused-imports": "^3.0.0", | ||
"eslint-plugin-react": "^7.34.1", | ||
"eslint-plugin-simple-import-sort": "^12.0.0", | ||
"eslint-plugin-sonarjs": "^0.25.0", | ||
"eslint-plugin-unused-imports": "^3.1.0", | ||
"file-loader": "^6.2.0", | ||
"jest": "^29.7.0", | ||
"jest-circus": "^29.7.0", | ||
"jest-environment-jsdom": "^29.7.0", | ||
"jsdom": "^22.1.0", | ||
"mini-css-extract-plugin": "^2.7.6", | ||
"prettier": "^3.1.0", | ||
"sass": "^1.69.5", | ||
"sass-loader": "^13.3.2", | ||
"style-loader": "^3.3.3", | ||
"swc-loader": "^0.2.3", | ||
"typescript": "^4.9.4", | ||
"mini-css-extract-plugin": "^2.8.1", | ||
"prettier": "^3.2.5", | ||
"sass": "^1.72.0", | ||
"sass-loader": "^14.1.1", | ||
"style-loader": "^3.3.4", | ||
"swc-loader": "^0.2.6", | ||
"typescript": "^5.4.3", | ||
"url-loader": "^4.1.1", | ||
"webpack": "^5.89.0", | ||
"webpack": "^5.91.0", | ||
"webpack-bundle-analyzer": "^4.10.1", | ||
"webpack-cli": "^5.1.4" | ||
} | ||
|
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
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,13 +1,13 @@ | ||
{ | ||
"private": true, | ||
"name": "tgui-dev-server", | ||
"version": "5.0.0", | ||
"version": "5.0.1", | ||
"type": "module", | ||
"dependencies": { | ||
"axios": "^1.6.2", | ||
"glob": "^7.2.0", | ||
"axios": "^1.6.8", | ||
"glob": "^7.2.3", | ||
"source-map": "^0.7.4", | ||
"stacktrace-parser": "^0.1.10", | ||
"ws": "^8.14.2" | ||
"ws": "^8.16.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
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,16 +1,16 @@ | ||
{ | ||
"private": true, | ||
"name": "tgui-polyfill", | ||
"version": "5.0.0", | ||
"version": "5.0.1", | ||
"scripts": { | ||
"tgui-polyfill:build": "terser 1-misc.js -f ascii_only,comments=false -o ../../public/tgui-polyfill.min.js" | ||
}, | ||
"dependencies": { | ||
"core-js": "^3.33.3", | ||
"regenerator-runtime": "^0.14.0", | ||
"core-js": "^3.36.1", | ||
"regenerator-runtime": "^0.14.1", | ||
"unfetch": "^5.0.0" | ||
}, | ||
"devDependencies": { | ||
"terser": "^5.24.0" | ||
"terser": "^5.30.2" | ||
} | ||
} |
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
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
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
Oops, something went wrong.