@quenty/optional 11.8.0 → 11.8.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
+ ## [11.8.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/optional@11.8.0...@quenty/optional@11.8.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
  # [11.8.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/optional@11.7.1...@quenty/optional@11.8.0) (2025-02-18)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/optional
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/optional",
3
- "version": "11.8.0",
3
+ "version": "11.8.1",
4
4
  "description": "Adds the optional function to Roblox for Nevermore require",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,10 +25,10 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/loader": "^10.8.0"
28
+ "@quenty/loader": "^10.8.1"
29
29
  },
30
30
  "publishConfig": {
31
31
  "access": "public"
32
32
  },
33
- "gitHead": "184a407d8d7366c39009444c3c9a7023cb176471"
33
+ "gitHead": "78c3ac0ab08dd18085b6e6e6e4f745e76ed99f68"
34
34
  }
@@ -21,7 +21,7 @@ local BasicPane = require.optional("BasicPane")
21
21
  @return T?
22
22
  @within optional
23
23
  ]=]
24
- return function(_require, _module)
24
+ return function(_require, _module: string | number | Instance)
25
25
  assert(_require, "Bad _require function")
26
26
  assert(type(_module) == "string"
27
27
  or type(_module) == "number"