@quenty/sounds 10.11.0-canary.ae8d76d.0 → 10.11.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,7 +3,7 @@
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.11.0-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/sounds@10.10.4...@quenty/sounds@10.11.0-canary.ae8d76d.0) (2025-05-10)
6
+ # [10.11.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/sounds@10.10.4...@quenty/sounds@10.11.0) (2025-05-10)
7
7
 
8
8
 
9
9
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/sounds",
3
- "version": "10.11.0-canary.ae8d76d.0",
3
+ "version": "10.11.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.11.0-canary.ae8d76d.0",
32
- "@quenty/promisemaid": "5.11.0-canary.ae8d76d.0",
33
- "@quenty/rbxasset": "5.8.3"
29
+ "@quenty/loader": "^10.9.0",
30
+ "@quenty/maid": "^3.5.0",
31
+ "@quenty/promise": "^10.11.0",
32
+ "@quenty/promisemaid": "^5.11.0",
33
+ "@quenty/rbxasset": "^5.9.0"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
38
+ "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
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,
@@ -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