Skip to content

Commit 8b1a9d1

Browse files
committed
Workflow test AGAIN again
1 parent e1e154c commit 8b1a9d1

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

Common/build.gradle.kts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,14 @@ dependencies {
1616
modApi(libs.architectury)
1717

1818
modApi(libs.hexcasting.common)
19-
modApi(libs.moreiotas.common)
19+
modApi(libs.moreiotas.common) {
20+
isTransitive = false
21+
}
2022

21-
modApi(libs.clothConfig.common)
22-
modApi(libs.inline.common)
23+
modApi(libs.clothConfig.common) { isTransitive = false }
24+
modApi(libs.inline.common) {
25+
isTransitive = false
26+
}
2327

2428

2529
libs.mixinExtras.common.also {

Forge/build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,14 @@ dependencies {
7575
modLocalRuntime(libs.caelus)
7676
modLocalRuntime(libs.inline.forge) {
7777
isTransitive = false
78-
exclude("com.llamalad7.mixinextras")
7978
}
8079
modLocalRuntime(libs.moreiotas.forge) {
8180
exclude(module = "paucal-forge-1.20.1")
8281
exclude(module = "hexcasting-forge-1.20.1")
8382
exclude(module = "forge")
8483
}
8584

86-
modApi(libs.clothConfig.forge)
85+
modApi(libs.clothConfig.forge) { isTransitive = false }
8786

8887
libs.mixinExtras.common.also {
8988
compileOnly(it)

doc/hexdoc.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@ author = "SuperKnux"
3030
show_landing_text = false
3131

3232
[extra.hexcasting]
33-
# regexes for parsing pattern registry files - if some or all of your patterns aren't being detected by hexdoc, this may need to be updated
34-
# NOTE: "!Raw" means "don't apply variable interpolation to this value"
35-
_pattern_regex = { "!Raw"='make\(\s*"(?P<name>[a-zA-Z0-9_\/]+)",\s*(?:new )?(?:ActionRegistryEntry|OperationAction)\(\s*HexPattern\.fromAngles\(\s*"(?P<signature>[aqweds]+)",\s*HexDir.(?P<startdir>\w+)\)' }
33+
_pattern_regex = { "!Raw" = '(?P<is_per_world>make|makePerWorld)\("(?P<name>[^"]+)"?,\sHexDir\.(?P<startdir>\w+),\s"(?P<signature>[qweasd]+)"' }
34+
_per_world_value = "makePerWorld"
3635

3736
[[extra.hexcasting.pattern_stubs]]
3837
path = "{$_common.src}/main/kotlin/at/ski/noophaestus/registry/NoophaestusActions.kt"

0 commit comments

Comments
 (0)