@quenty/servicebag 3.1.4-canary.c50dead.0 → 3.2.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,12 +3,23 @@
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
- ## [3.1.4-canary.c50dead.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/servicebag@3.1.3...@quenty/servicebag@3.1.4-canary.c50dead.0) (2021-11-20)
6
+ ## [3.2.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/servicebag@3.2.0...@quenty/servicebag@3.2.1) (2021-12-04)
7
7
 
8
8
 
9
9
  ### Bug Fixes
10
10
 
11
- * Support MacOS syncing ([c50dead](https://github.com/Quenty/NevermoreEngine/commit/c50deadbe5ebe479aded04e1619441a08ff0e9a8))
11
+ * Better error messages ([80581dc](https://github.com/Quenty/NevermoreEngine/commit/80581dc1e7722459086e0888fc05fa596f557c11))
12
+
13
+
14
+
15
+
16
+
17
+ # [3.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/servicebag@3.1.3...@quenty/servicebag@3.2.0) (2021-11-20)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * Support MacOS syncing ([#225](https://github.com/Quenty/NevermoreEngine/issues/225)) ([03f9183](https://github.com/Quenty/NevermoreEngine/commit/03f918392c6a5bdd33f8a17c38de371d1e06c67a))
12
23
 
13
24
 
14
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/servicebag",
3
- "version": "3.1.4-canary.c50dead.0",
3
+ "version": "3.2.1",
4
4
  "description": "Service providing mechanisms for Nevermore",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,12 +26,12 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/baseobject": "3.1.3-canary.c50dead.0",
30
- "@quenty/loader": "3.1.1",
31
- "@quenty/signal": "2.0.0"
29
+ "@quenty/baseobject": "^3.2.0",
30
+ "@quenty/loader": "^3.1.1",
31
+ "@quenty/signal": "^2.0.0"
32
32
  },
33
33
  "publishConfig": {
34
34
  "access": "public"
35
35
  },
36
- "gitHead": "c50deadbe5ebe479aded04e1619441a08ff0e9a8"
36
+ "gitHead": "a0583027b100d718bce1603ec6c525ad99adeeac"
37
37
  }
@@ -40,6 +40,8 @@ function ServiceBag:GetService(serviceType)
40
40
  serviceType = require(serviceType)
41
41
  end
42
42
 
43
+ assert(type(serviceType) == "table", "Bad serviceType definition")
44
+
43
45
  local service = self._services[serviceType]
44
46
  if service then
45
47
  self:_ensureInitialization(serviceType)