@quenty/sounds 10.10.4 → 10.10.5-canary.11a5dcf.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,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
+ ## [10.10.5-canary.11a5dcf.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/sounds@10.10.4...@quenty/sounds@10.10.5-canary.11a5dcf.0) (2025-05-10)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Additional type checking updates ([05ba29a](https://github.com/Quenty/NevermoreEngine/commit/05ba29a03efc9f3feed74b34f1d9dfb237496214))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [10.10.4](https://github.com/Quenty/NevermoreEngine/compare/@quenty/sounds@10.10.3...@quenty/sounds@10.10.4) (2025-04-10)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/sounds
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/sounds",
3
- "version": "10.10.4",
3
+ "version": "10.10.5-canary.11a5dcf.0",
4
4
  "description": "Utility functions involving sounds and their state",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,14 +26,14 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/loader": "^10.8.3",
30
- "@quenty/maid": "^3.4.3",
31
- "@quenty/promise": "^10.10.4",
32
- "@quenty/promisemaid": "^5.10.4",
33
- "@quenty/rbxasset": "^5.8.3"
29
+ "@quenty/loader": "10.8.4-canary.11a5dcf.0",
30
+ "@quenty/maid": "3.4.4-canary.11a5dcf.0",
31
+ "@quenty/promise": "10.10.5-canary.11a5dcf.0",
32
+ "@quenty/promisemaid": "5.10.5-canary.11a5dcf.0",
33
+ "@quenty/rbxasset": "5.8.4-canary.11a5dcf.0"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "b06c070ae91d5dab7bd8de6e290ad2caabb15d8f"
38
+ "gitHead": "11a5dcf7d4c7a0bfbf3337e97d30e8346ea09d3f"
39
39
  }
@@ -6,10 +6,10 @@
6
6
 
7
7
  local require = require(script.Parent.loader).load(script)
8
8
 
9
+ local Maid = require("Maid")
9
10
  local Promise = require("Promise")
10
- local PromiseUtils = require("PromiseUtils")
11
11
  local PromiseMaidUtils = require("PromiseMaidUtils")
12
- local Maid = require("Maid")
12
+ local PromiseUtils = require("PromiseUtils")
13
13
 
14
14
  local SoundPromiseUtils = {}
15
15
 
@@ -11,11 +11,11 @@
11
11
 
12
12
  local require = require(script.Parent.loader).load(script)
13
13
 
14
- local SoundService = game:GetService("SoundService")
15
14
  local RunService = game:GetService("RunService")
15
+ local SoundService = game:GetService("SoundService")
16
16
 
17
- local SoundPromiseUtils = require("SoundPromiseUtils")
18
17
  local RbxAssetUtils = require("RbxAssetUtils")
18
+ local SoundPromiseUtils = require("SoundPromiseUtils")
19
19
 
20
20
  export type SoundOptions = {
21
21
  SoundId: number | string,
@@ -135,7 +135,7 @@ end
135
135
  @param templateName string
136
136
  @return Sound
137
137
  ]=]
138
- function SoundUtils.playTemplate(templates, templateName: string)
138
+ function SoundUtils.playTemplate(templates, templateName: string): Sound
139
139
  assert(type(templates) == "table", "Bad templates")
140
140
  assert(type(templateName) == "string", "Bad templateName")
141
141
 
@@ -197,4 +197,4 @@ function SoundUtils.playTemplateInParent(templates, templateName: string, parent
197
197
  return sound
198
198
  end
199
199
 
200
- return SoundUtils
200
+ return SoundUtils