@quenty/experiencecalculator 2.6.0 → 2.6.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,14 @@
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
+ ## [2.6.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/experiencecalculator@2.6.0...@quenty/experiencecalculator@2.6.1) (2026-01-03)
7
+
8
+ **Note:** Version bump only for package @quenty/experiencecalculator
9
+
10
+
11
+
12
+
13
+
6
14
  # [2.6.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/experiencecalculator@2.5.2...@quenty/experiencecalculator@2.6.0) (2025-05-10)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/experiencecalculator
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/experiencecalculator",
3
- "version": "2.6.0",
3
+ "version": "2.6.1",
4
4
  "description": "Calculate experience on an exponential curve and perform relevant calculations Uses formulas from stackoverflow.com/questions/6954874/php-game-formula-to-calculate-a-level-based-on-exp",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -28,5 +28,5 @@
28
28
  "publishConfig": {
29
29
  "access": "public"
30
30
  },
31
- "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
31
+ "gitHead": "44e41814ddc3c14c3879320a10ed2d8e88103a4c"
32
32
  }
@@ -1,9 +1,11 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class ExperienceUtils.spec.lua
3
4
  ]]
4
5
 
5
- local require =
6
- require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
+ local require = (require :: any)(
7
+ game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent
8
+ ).bootstrapStory(script) :: typeof(require(script.Parent.loader).load(script))
7
9
 
8
10
  local ExperienceUtils = require("ExperienceUtils")
9
11
  local Jest = require("Jest")