Refactor project structure by removing "common" module

Removed the "common" module and associated configurations from the project. Updated dependencies and file placements to reflect these changes across build and source files. Migrated necessary code from the "common" module to relevant existing modules to maintain functionality.
This commit is contained in:
2024-12-08 14:57:01 +01:00
parent b20b2266ba
commit ee76d4c4a3
10 changed files with 201 additions and 282 deletions

View File

@@ -40,15 +40,9 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation(project(":common"))
implementation("nl.astraeus:vst-worklet-base:1.0.0-SNAPSHOT")
}
}
val jsMain by getting {
dependencies {
implementation(project(":common"))
}
}
val jsMain by getting
}
}