@quenty/blend 12.2.0 → 12.2.1-canary.468.ea8a226.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,23 @@
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
+ ## [12.2.1-canary.468.ea8a226.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@12.2.0...@quenty/blend@12.2.1-canary.468.ea8a226.0) (2024-05-09)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Bootstrap specifically to loader ([7f4d4f9](https://github.com/Quenty/NevermoreEngine/commit/7f4d4f9cd4a6602af8daaf04983bb349dafc7e95))
12
+ * Fix .package-lock.json replicating in packages ([75d0efe](https://github.com/Quenty/NevermoreEngine/commit/75d0efeef239f221d93352af71a5b3e930ec23c5))
13
+
14
+
15
+ ### Features
16
+
17
+ * Still allow spring objects to work on server ([65cadaf](https://github.com/Quenty/NevermoreEngine/commit/65cadafc84015294b4946f1d4cae228a9a7786e2))
18
+
19
+
20
+
21
+
22
+
6
23
  # [12.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@12.1.1...@quenty/blend@12.2.0) (2024-04-27)
7
24
 
8
25
  **Note:** Version bump only for package @quenty/blend
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "name": "blend",
3
+ "globIgnorePaths": [ "**/.package-lock.json" ],
3
4
  "tree": {
4
5
  "$path": "src"
5
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/blend",
3
- "version": "12.2.0",
3
+ "version": "12.2.1-canary.468.ea8a226.0",
4
4
  "description": "Declarative UI system.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,24 +27,24 @@
27
27
  "access": "public"
28
28
  },
29
29
  "dependencies": {
30
- "@quenty/acceltween": "^2.3.0",
31
- "@quenty/brio": "^14.2.0",
32
- "@quenty/ducktype": "^5.2.0",
33
- "@quenty/instanceutils": "^13.2.0",
34
- "@quenty/loader": "^10.2.0",
35
- "@quenty/maid": "^3.1.0",
36
- "@quenty/promise": "^10.2.0",
37
- "@quenty/rx": "^13.2.0",
38
- "@quenty/signal": "^7.2.0",
39
- "@quenty/spring": "^10.2.0",
40
- "@quenty/steputils": "^3.3.0",
41
- "@quenty/string": "^3.1.0",
42
- "@quenty/valuebaseutils": "^13.2.0",
43
- "@quenty/valueobject": "^13.2.0"
30
+ "@quenty/acceltween": "2.3.1-canary.468.ea8a226.0",
31
+ "@quenty/brio": "14.2.1-canary.468.ea8a226.0",
32
+ "@quenty/ducktype": "5.2.1-canary.468.ea8a226.0",
33
+ "@quenty/instanceutils": "13.2.1-canary.468.ea8a226.0",
34
+ "@quenty/loader": "10.2.1-canary.468.ea8a226.0",
35
+ "@quenty/maid": "3.1.1-canary.468.ea8a226.0",
36
+ "@quenty/promise": "10.2.1-canary.468.ea8a226.0",
37
+ "@quenty/rx": "13.2.1-canary.468.ea8a226.0",
38
+ "@quenty/signal": "7.2.1-canary.468.ea8a226.0",
39
+ "@quenty/spring": "10.2.1-canary.468.ea8a226.0",
40
+ "@quenty/steputils": "3.3.1-canary.468.ea8a226.0",
41
+ "@quenty/string": "3.1.1-canary.468.ea8a226.0",
42
+ "@quenty/valuebaseutils": "13.2.1-canary.468.ea8a226.0",
43
+ "@quenty/valueobject": "13.2.1-canary.468.ea8a226.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@quenty/contentproviderutils": "^12.2.0",
47
- "@quenty/playerthumbnailutils": "^10.2.0"
46
+ "@quenty/contentproviderutils": "12.2.1-canary.468.ea8a226.0",
47
+ "@quenty/playerthumbnailutils": "10.2.1-canary.468.ea8a226.0"
48
48
  },
49
- "gitHead": "5c9eab1eac73f0d54953cca5017b7be968182f72"
49
+ "gitHead": "ea8a2260a364aaf6d6c246a93632b789935da134"
50
50
  }
@@ -84,7 +84,11 @@ end
84
84
  @return Observable<T>
85
85
  ]=]
86
86
  function SpringObject:Observe()
87
- return self:ObserveRenderStepped()
87
+ if RunService:IsClient() then
88
+ return self:ObserveOnSignal(RunService.RenderStepped)
89
+ else
90
+ return self:ObserveOnSignal(RunService.Stepped)
91
+ end
88
92
  end
89
93
 
90
94
  --[=[
@@ -2,7 +2,7 @@
2
2
  @class Blend.story
3
3
  ]]
4
4
 
5
- local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).load(script)
5
+ local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
6
 
7
7
  local RunService = game:GetService("RunService")
8
8
 
@@ -2,7 +2,7 @@
2
2
  @class Blend.story
3
3
  ]]
4
4
 
5
- local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).load(script)
5
+ local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
6
 
7
7
  local Blend = require("Blend")
8
8
  local Maid = require("Maid")
@@ -2,7 +2,7 @@
2
2
  @class Blend.story
3
3
  ]]
4
4
 
5
- local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).load(script)
5
+ local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
6
 
7
7
  local RunService = game:GetService("RunService")
8
8
 
@@ -2,7 +2,7 @@
2
2
  @class BlendTextbox.story
3
3
  ]]
4
4
 
5
- local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).load(script)
5
+ local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
6
 
7
7
  local RunService = game:GetService("RunService")
8
8
 
@@ -2,7 +2,7 @@
2
2
  @class BlendSingle.story
3
3
  ]]
4
4
 
5
- local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).load(script)
5
+ local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
6
 
7
7
  local Maid = require("Maid")
8
8
  local Observable = require("Observable")
@@ -2,7 +2,7 @@
2
2
  @class Blend.story
3
3
  ]]
4
4
 
5
- local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).load(script)
5
+ local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
6
 
7
7
  local RunService = game:GetService("RunService")
8
8
 
@@ -2,7 +2,7 @@
2
2
  @class BlendTextbox.story
3
3
  ]]
4
4
 
5
- local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).load(script)
5
+ local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
6
 
7
7
  local Blend = require("Blend")
8
8
  local Maid = require("Maid")