@quenty/conditions 10.7.1-canary.497.2df557a.0 → 10.7.1-canary.497.496fc5b.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,12 +3,9 @@
|
|
|
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.7.1-canary.497.
|
|
6
|
+
## [10.7.1-canary.497.496fc5b.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/conditions@10.7.0...@quenty/conditions@10.7.1-canary.497.496fc5b.0) (2024-09-20)
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
### Bug Fixes
|
|
10
|
-
|
|
11
|
-
* Rename stragglers ([25c8512](https://github.com/Quenty/NevermoreEngine/commit/25c85124769eb0c92ad4d4c51bc950d9c319c994))
|
|
8
|
+
**Note:** Version bump only for package @quenty/conditions
|
|
12
9
|
|
|
13
10
|
|
|
14
11
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/conditions",
|
|
3
|
-
"version": "10.7.1-canary.497.
|
|
3
|
+
"version": "10.7.1-canary.497.496fc5b.0",
|
|
4
4
|
"description": "Adornee based conditional system that is sufficiently generic to script gameplay.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
},
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@quenty/attributeutils": "14.5.1-canary.497.
|
|
27
|
-
"@quenty/brio": "14.5.1-canary.497.
|
|
28
|
-
"@quenty/instanceutils": "13.5.1-canary.497.
|
|
29
|
-
"@quenty/loader": "10.4.1-canary.497.
|
|
26
|
+
"@quenty/attributeutils": "14.5.1-canary.497.496fc5b.0",
|
|
27
|
+
"@quenty/brio": "14.5.1-canary.497.496fc5b.0",
|
|
28
|
+
"@quenty/instanceutils": "13.5.1-canary.497.496fc5b.0",
|
|
29
|
+
"@quenty/loader": "10.4.1-canary.497.496fc5b.0",
|
|
30
30
|
"@quenty/maid": "3.3.0",
|
|
31
|
-
"@quenty/rx": "13.5.1-canary.497.
|
|
32
|
-
"@quenty/statestack": "14.6.1-canary.497.
|
|
33
|
-
"@quenty/tie": "10.7.1-canary.497.
|
|
31
|
+
"@quenty/rx": "13.5.1-canary.497.496fc5b.0",
|
|
32
|
+
"@quenty/statestack": "14.6.1-canary.497.496fc5b.0",
|
|
33
|
+
"@quenty/tie": "10.7.1-canary.497.496fc5b.0"
|
|
34
34
|
},
|
|
35
35
|
"contributors": [
|
|
36
36
|
"Quenty"
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "496fc5bb230a226ec6c86a8dfd025b8e326d92d8"
|
|
42
42
|
}
|
|
@@ -146,7 +146,7 @@ function AdorneeConditionUtils.createRequiredProperty(propertyName: string, requ
|
|
|
146
146
|
end);
|
|
147
147
|
})
|
|
148
148
|
end)
|
|
149
|
-
condition.Name =
|
|
149
|
+
condition.Name = ("RequiredProperty%s_%s_%s"):format(
|
|
150
150
|
AdorneeConditionUtils.getConditionNamePostfix(),
|
|
151
151
|
tostring(propertyName),
|
|
152
152
|
tostring(requiredValue))
|
|
@@ -171,7 +171,7 @@ function AdorneeConditionUtils.createRequiredAttribute(attributeName: string, at
|
|
|
171
171
|
})
|
|
172
172
|
end)
|
|
173
173
|
|
|
174
|
-
condition.Name =
|
|
174
|
+
condition.Name = ("RequiredAttribute%s_%s_%s"):format(
|
|
175
175
|
AdorneeConditionUtils.getConditionNamePostfix(),
|
|
176
176
|
tostring(attributeName),
|
|
177
177
|
tostring(attributeValue))
|
|
@@ -190,7 +190,7 @@ function AdorneeConditionUtils.createRequiredTieInterface(tieInterfaceDefinition
|
|
|
190
190
|
return tieInterfaceDefinition:ObserveIsImplemented(adornee)
|
|
191
191
|
end)
|
|
192
192
|
|
|
193
|
-
condition.Name =
|
|
193
|
+
condition.Name = ("RequiredInterface%s_%s"):format(
|
|
194
194
|
AdorneeConditionUtils.getConditionNamePostfix(),
|
|
195
195
|
tieInterfaceDefinition:GetName())
|
|
196
196
|
|