@quenty/statestack 14.19.0-canary.ae8d76d.0 → 14.19.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
- # [14.19.0-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/statestack@14.18.3...@quenty/statestack@14.19.0-canary.ae8d76d.0) (2025-05-10)
6
+ # [14.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/statestack@14.18.3...@quenty/statestack@14.19.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/statestack",
3
- "version": "14.19.0-canary.ae8d76d.0",
3
+ "version": "14.19.0",
4
4
  "description": "Stack of values that allows multiple systems to enable or disable a state",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,15 +25,15 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/baseobject": "10.8.3",
29
- "@quenty/brio": "14.18.0-canary.ae8d76d.0",
30
- "@quenty/loader": "10.8.3",
31
- "@quenty/maid": "3.4.3",
32
- "@quenty/rx": "13.18.0-canary.ae8d76d.0",
33
- "@quenty/valueobject": "13.18.0-canary.ae8d76d.0"
28
+ "@quenty/baseobject": "^10.9.0",
29
+ "@quenty/brio": "^14.18.0",
30
+ "@quenty/loader": "^10.9.0",
31
+ "@quenty/maid": "^3.5.0",
32
+ "@quenty/rx": "^13.18.0",
33
+ "@quenty/valueobject": "^13.18.0"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
38
+ "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
39
39
  }
@@ -5,10 +5,10 @@
5
5
 
6
6
  local require = require(script.Parent.loader).load(script)
7
7
 
8
- local StateStack = require("StateStack")
9
- local Observable = require("Observable")
10
- local Maid = require("Maid")
11
8
  local Brio = require("Brio")
9
+ local Maid = require("Maid")
10
+ local Observable = require("Observable")
11
+ local StateStack = require("StateStack")
12
12
 
13
13
  local RxStateStackUtils = {}
14
14
 
@@ -71,4 +71,4 @@ function RxStateStackUtils.createStateStack<T>(observable: Observable.Observable
71
71
  return stateStack
72
72
  end
73
73
 
74
- return RxStateStackUtils
74
+ return RxStateStackUtils
@@ -25,11 +25,11 @@
25
25
  local require = require(script.Parent.loader).load(script)
26
26
 
27
27
  local BaseObject = require("BaseObject")
28
- local ValueObject = require("ValueObject")
29
28
  local Brio = require("Brio")
30
- local Signal = require("Signal")
31
29
  local Observable = require("Observable")
32
30
  local Rx = require("Rx")
31
+ local Signal = require("Signal")
32
+ local ValueObject = require("ValueObject")
33
33
 
34
34
  local StateStack = setmetatable({}, BaseObject)
35
35
  StateStack.ClassName = "StateStack"
@@ -173,4 +173,4 @@ end
173
173
  @within StateStack
174
174
  ]=]
175
175
 
176
- return StateStack
176
+ return StateStack