@quenty/inputkeymaputils 5.0.0 → 5.1.1-canary.270.0fe7bd3.0

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,25 @@
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
+ ## [5.1.1-canary.270.0fe7bd3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@5.1.0...@quenty/inputkeymaputils@5.1.1-canary.270.0fe7bd3.0) (2022-07-02)
7
+
8
+ **Note:** Version bump only for package @quenty/inputkeymaputils
9
+
10
+
11
+
12
+
13
+
14
+ # [5.1.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@5.0.0...@quenty/inputkeymaputils@5.1.0) (2022-06-21)
15
+
16
+
17
+ ### Features
18
+
19
+ * Add MemoryStore package ([f1a7cdd](https://github.com/Quenty/NevermoreEngine/commit/f1a7cddcb8e41b7dbf3898233e846925cbea2740))
20
+
21
+
22
+
23
+
24
+
6
25
  # [5.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@4.3.0...@quenty/inputkeymaputils@5.0.0) (2022-05-21)
7
26
 
8
27
  **Note:** Version bump only for package @quenty/inputkeymaputils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/inputkeymaputils",
3
- "version": "5.0.0",
3
+ "version": "5.1.1-canary.270.0fe7bd3.0",
4
4
  "description": "Utility methods for input map",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,21 +26,21 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/baseobject": "^5.0.0",
30
- "@quenty/brio": "^6.0.0",
31
- "@quenty/inputmode": "^5.0.0",
32
- "@quenty/loader": "^5.0.0",
33
- "@quenty/maid": "^2.3.0",
34
- "@quenty/observablecollection": "^3.0.0",
35
- "@quenty/rx": "^5.0.0",
36
- "@quenty/servicebag": "^5.0.0",
37
- "@quenty/statestack": "^6.0.0",
38
- "@quenty/table": "^3.0.0",
39
- "@quenty/valuebaseutils": "^5.0.0",
40
- "@quenty/valueobject": "^5.0.0"
29
+ "@quenty/baseobject": "5.0.0",
30
+ "@quenty/brio": "6.1.0",
31
+ "@quenty/inputmode": "5.1.0",
32
+ "@quenty/loader": "5.0.0",
33
+ "@quenty/maid": "2.3.0",
34
+ "@quenty/observablecollection": "3.1.1-canary.270.0fe7bd3.0",
35
+ "@quenty/rx": "5.1.0",
36
+ "@quenty/servicebag": "5.0.0",
37
+ "@quenty/statestack": "6.1.0",
38
+ "@quenty/table": "3.1.0",
39
+ "@quenty/valuebaseutils": "5.1.0",
40
+ "@quenty/valueobject": "5.1.0"
41
41
  },
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "9f7eaea7543c33c89d2e32c38491b13f9271f4f7"
45
+ "gitHead": "0fe7bd3216177265038ff7d3f83d1d47e748141c"
46
46
  }
@@ -140,7 +140,11 @@ function InputKeyMapListProvider:Start()
140
140
  end
141
141
 
142
142
  function InputKeyMapListProvider:Destroy()
143
- self._maid:DoCleaning()
143
+ if self._maid then
144
+ self._maid:DoCleaning()
145
+ self._maid = nil
146
+ end
147
+
144
148
  self._inputKeyMapLists = nil
145
149
  end
146
150