Skip to content

Commit

Permalink
[MIRROR] Updates several packages for tgui [MDB IGNORE] (Skyrat-SS13#…
Browse files Browse the repository at this point in the history
…25255)

* Updates several packages for tgui

* Updating

* Update yarn.lock

---------

Co-authored-by: Jeremiah <[email protected]>
Co-authored-by: Giz <[email protected]>
  • Loading branch information
3 people authored Nov 26, 2023
1 parent a248640 commit de11027
Show file tree
Hide file tree
Showing 11 changed files with 3,850 additions and 2,395 deletions.
7 changes: 6 additions & 1 deletion tgui/.yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,14 @@ logFilters:
- code: YN0062
level: discard

packageExtensions:
'babel-plugin-inferno@*':
dependencies:
'@babel/core': '*'

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"
spec: '@yarnpkg/plugin-interactive-tools'

pnpEnableEsmLoader: false

Expand Down
2 changes: 1 addition & 1 deletion tgui/babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const createBabelConfig = (options) => {
...presets,
].filter(Boolean),
plugins: [
[require.resolve('@babel/plugin-proposal-class-properties'), {
[require.resolve('@babel/plugin-transform-class-properties'), {
loose: true,
}],
require.resolve('@babel/plugin-transform-jscript'),
Expand Down
62 changes: 31 additions & 31 deletions tgui/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "tgui-workspace",
"version": "4.3.1",
"version": "4.3.2",
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
Expand All @@ -20,44 +20,44 @@
"tgui:tsc": "tsc"
},
"dependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-jscript": "^7.14.5",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^29.2.4",
"@types/jsdom": "^20.0.1",
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/plugin-transform-jscript": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.10",
"@types/jsdom": "^21.1.6",
"@types/node": "14.x",
"@types/webpack": "^5.28.0",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/parser": "^5.47.1",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"babel-plugin-inferno": "^6.3.0",
"@types/webpack": "^5.28.5",
"@types/webpack-env": "^1.18.4",
"@typescript-eslint/parser": "^5.62.0",
"babel-jest": "^29.7.0",
"babel-loader": "^8.3.0",
"babel-plugin-inferno": "^6.7.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"common": "workspace:*",
"css-loader": "^5.2.7",
"css-loader": "^6.8.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-radar": "^0.2.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-unused-imports": "^1.1.4",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-unused-imports": "^1.1.5",
"file-loader": "^6.2.0",
"inferno": "^7.4.8",
"jest": "^27.0.6",
"jest-circus": "^27.0.6",
"jsdom": "^16.7.0",
"mini-css-extract-plugin": "^1.6.2",
"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": "npm:[email protected]",
"sass": "^1.37.5",
"sass-loader": "^11.1.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.4",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"typescript": "^4.9.4",
"url-loader": "^4.1.1",
"webpack": "^5.76.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2"
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4"
}
}
2 changes: 1 addition & 1 deletion tgui/packages/tgui-bench/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const setup = async () => {
.readFileSync(path.join(publicDir, 'tgui.html'), 'utf-8')
.replace('<!-- tgui:assets -->\n', assets);

server.register(require('fastify-static'), {
server.register(require('@fastify/static'), {
root: publicDir,
});

Expand Down
10 changes: 5 additions & 5 deletions tgui/packages/tgui-bench/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"private": true,
"name": "tgui-bench",
"version": "4.3.1",
"version": "4.3.2",
"dependencies": {
"@fastify/static": "^6.12.0",
"common": "workspace:*",
"fastify": "^3.29.4",
"fastify-static": "^4.2.3",
"inferno": "^7.4.8",
"inferno-vnode-flags": "^7.4.8",
"fastify": "^3.29.5",
"inferno": "^7.4.11",
"inferno-vnode-flags": "^7.4.11",
"lodash": "^4.17.21",
"platform": "^1.3.6",
"tgui": "workspace:*"
Expand Down
10 changes: 5 additions & 5 deletions tgui/packages/tgui-dev-server/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"private": true,
"name": "tgui-dev-server",
"version": "4.3.1",
"version": "4.3.2",
"type": "module",
"dependencies": {
"axios": "^1.6.0",
"glob": "^7.1.7",
"source-map": "^0.7.3",
"axios": "^1.6.2",
"glob": "^10.3.10",
"source-map": "^0.7.4",
"stacktrace-parser": "^0.1.10",
"ws": "^7.5.3"
"ws": "^8.14.2"
}
}
6 changes: 3 additions & 3 deletions tgui/packages/tgui-panel/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"private": true,
"name": "tgui-panel",
"version": "4.3.1",
"version": "4.3.2",
"dependencies": {
"common": "workspace:*",
"dompurify": "^2.3.1",
"inferno": "^7.4.8",
"dompurify": "^2.4.4",
"inferno": "^7.4.11",
"tgui": "workspace:*",
"tgui-dev-server": "workspace:*",
"tgui-polyfill": "workspace:*"
Expand Down
10 changes: 5 additions & 5 deletions tgui/packages/tgui-polyfill/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"private": true,
"name": "tgui-polyfill",
"version": "4.3.1",
"version": "4.3.2",
"scripts": {
"tgui-polyfill:build": "terser 00-html5shiv.js 01-ie8.js 02-dom4.js 03-css-om.js 10-misc.js --ie8 -f ascii_only,comments=false -o ../../public/tgui-polyfill.min.js"
},
"dependencies": {
"core-js": "^3.16.1",
"regenerator-runtime": "^0.13.9",
"unfetch": "^4.2.0"
"core-js": "^3.33.3",
"regenerator-runtime": "^0.14.0",
"unfetch": "^5.0.0"
},
"devDependencies": {
"terser": "^5.14.2"
"terser": "^5.24.0"
}
}
2 changes: 1 addition & 1 deletion tgui/packages/tgui-say/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "1.0.0",
"dependencies": {
"common": "workspace:*",
"inferno": "^7.4.8",
"inferno": "^7.4.11",
"tgui": "workspace:*",
"tgui-polyfill": "workspace:*"
}
Expand Down
14 changes: 7 additions & 7 deletions tgui/packages/tgui/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"private": true,
"name": "tgui",
"version": "4.3.1",
"version": "4.3.2",
"dependencies": {
"@popperjs/core": "^2.9.3",
"@popperjs/core": "^2.11.8",
"@types/marked": "^4.0.8",
"common": "workspace:*",
"dateformat": "^4.5.1",
"dompurify": "^2.3.1",
"highlight.js": "^11.5.1",
"inferno": "^7.4.8",
"inferno-vnode-flags": "^7.4.8",
"dateformat": "^4.6.2",
"dompurify": "^2.4.4",
"highlight.js": "^11.9.0",
"inferno": "^7.4.11",
"inferno-vnode-flags": "^7.4.11",
"js-yaml": "^4.1.0",
"marked": "^4.2.12",
"tgui-dev-server": "workspace:*",
Expand Down
Loading

0 comments on commit de11027

Please sign in to comment.