@quenty/actionmanager 13.19.0 → 13.19.1

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [13.19.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/actionmanager@13.19.0...@quenty/actionmanager@13.19.1) (2025-04-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Add types to packages ([2374fb2](https://github.com/Quenty/NevermoreEngine/commit/2374fb2b043cfbe0e9b507b3316eec46a4e353a0))
12
+
13
+
14
+
15
+
16
+
6
17
  # [13.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/actionmanager@13.18.2...@quenty/actionmanager@13.19.0) (2025-04-02)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/actionmanager
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/actionmanager",
3
- "version": "13.19.0",
3
+ "version": "13.19.1",
4
4
  "description": "Holds single toggleable actions (like a tool system)",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,14 +25,14 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/enabledmixin": "^11.12.0",
29
- "@quenty/loader": "^10.8.0",
30
- "@quenty/maid": "^3.4.0",
31
- "@quenty/signal": "^7.10.0",
32
- "@quenty/valueobject": "^13.17.0"
28
+ "@quenty/enabledmixin": "^11.12.1",
29
+ "@quenty/loader": "^10.8.1",
30
+ "@quenty/maid": "^3.4.1",
31
+ "@quenty/signal": "^7.10.1",
32
+ "@quenty/valueobject": "^13.17.1"
33
33
  },
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "gitHead": "e8ea56930e65322fcffc05a1556d5df988068f0b"
37
+ "gitHead": "78c3ac0ab08dd18085b6e6e6e4f745e76ed99f68"
38
38
  }
@@ -78,7 +78,7 @@ end
78
78
  function ActionManager:GetActions()
79
79
  local list = {}
80
80
 
81
- for _, action in pairs(self._actions) do
81
+ for _, action in self._actions do
82
82
  table.insert(list, action)
83
83
  end
84
84