tgui-core 5.5.2 → 5.5.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/common/eventbus.js +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# tgui-core
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/tgui-core)
|
|
4
|
+
|
|
3
5
|
A collection of utilities and components for the [tgui](https://github.com/tgstation/tgstation) framework.
|
|
4
6
|
|
|
5
7
|
This package was built to help the various downstream SS13 servers stay up to date with TGUI without having to keep a local version of each file.
|
package/dist/common/eventbus.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
class s{listeners;constructor(s){this.listeners=s}dispatch(s){let t=this.listeners[s.type];"payload"in s?t(s.payload):t()}}export{s as EventBus};
|
|
1
|
+
class s{listeners;constructor(s){this.listeners=s}dispatch(s){let t=this.listeners[s.type];t&&("payload"in s?t(s.payload):t())}}export{s as EventBus};
|
package/package.json
CHANGED
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"dist",
|
|
43
43
|
"styles"
|
|
44
44
|
],
|
|
45
|
+
"homepage": "https://github.com/tgstation/tgui-core",
|
|
45
46
|
"keywords": [
|
|
46
47
|
"TGUI",
|
|
47
48
|
"library",
|
|
@@ -56,7 +57,7 @@
|
|
|
56
57
|
},
|
|
57
58
|
"repository": {
|
|
58
59
|
"type": "git",
|
|
59
|
-
"url": "https://github.com/tgstation/tgui-core.git"
|
|
60
|
+
"url": "git+https://github.com/tgstation/tgui-core.git"
|
|
60
61
|
},
|
|
61
62
|
"scripts": {
|
|
62
63
|
"build-rslib": "rslib build",
|
|
@@ -67,5 +68,5 @@
|
|
|
67
68
|
"test": "bun test"
|
|
68
69
|
},
|
|
69
70
|
"type": "module",
|
|
70
|
-
"version": "5.5.
|
|
71
|
+
"version": "5.5.10"
|
|
71
72
|
}
|