Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 43c4edc

Browse files
1 parent 837041f commit 43c4edc

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

code/controllers/subsystem/tgui.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ SUBSYSTEM_DEF(tgui)
2929
/datum/controller/subsystem/tgui/PreInit()
3030
basehtml = file2text('tgui/public/tgui.html')
3131
// Inject inline polyfills
32-
var/polyfill = file2text('tgui/public/tgui-polyfill.bundle.js')
32+
var/polyfill = file2text('tgui/public/tgui-polyfill.min.js')
3333
polyfill = "<script>\n[polyfill]\n</script>"
3434
basehtml = replacetextEx(basehtml, "<!-- tgui:inline-polyfill -->", polyfill)
3535

tgui/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ package-lock.json
1616
/public/.tmp/**/*
1717
/public/**/*
1818
!/public/*.html
19-
!/public/tgui-polyfill.bundle.js
19+
!/public/tgui-polyfill.min.js
2020
/coverage
2121

2222
## Previously ignored locations that are kept to avoid confusing git

tgui/packages/tgui-polyfill/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "tgui-polyfill",
44
"version": "4.3.0",
55
"scripts": {
6-
"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.bundle.js"
6+
"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"
77
},
88
"dependencies": {
99
"core-js": "^3.16.1",

0 commit comments

Comments
 (0)