Skip to content

Commit

Permalink
move files
Browse files Browse the repository at this point in the history
  • Loading branch information
mio-19 committed Oct 23, 2024
1 parent 688f449 commit 07a5e71
Show file tree
Hide file tree
Showing 12 changed files with 4 additions and 16 deletions.
20 changes: 4 additions & 16 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -455,17 +455,6 @@ def useSpire(
)
)

lazy val base = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.withoutSuffixFor(JVMPlatform)
.crossType(CrossType.Pure)
.in(file("base"))
.settings(
name := "base",
commonSettings,
baseDeps
)
.jvmSettings(commonJvmLibSettings)

lazy val pretty = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.withoutSuffixFor(JVMPlatform)
.crossType(CrossType.Pure)
Expand Down Expand Up @@ -494,7 +483,7 @@ lazy val syntax = useSpire(
.withoutSuffixFor(JVMPlatform)
.crossType(CrossType.Pure)
.in(file("syntax"))
.dependsOn(base, pretty)
.dependsOn(utils, pretty)
.settings(
name := "syntax",
commonSettings
Expand All @@ -517,7 +506,7 @@ lazy val tyck = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.withoutSuffixFor(JVMPlatform)
.crossType(CrossType.Pure)
.in(file("tyck"))
.dependsOn(base, syntax, err)
.dependsOn(utils, syntax, err)
.settings(
name := "tyck",
commonSettings
Expand All @@ -541,7 +530,7 @@ lazy val compiler = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.withoutSuffixFor(JVMPlatform)
.crossType(CrossType.Full)
.in(file("compiler"))
.dependsOn(base, syntax, err)
.dependsOn(utils, syntax, err)
.jvmConfigure(_.dependsOn(compiler213.jvm))
.jsConfigure(_.dependsOn(compiler213.js))
.settings(
Expand Down Expand Up @@ -708,7 +697,7 @@ lazy val core = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.withoutSuffixFor(JVMPlatform)
.crossType(CrossType.Pure)
.in(file("core"))
.dependsOn(base, parser, syntax, pretty, tyck)
.dependsOn(utils, parser, syntax, pretty, tyck)
.settings(
name := "core",
assembly / assemblyOutputPath := file("target") / "chester-core.jar",
Expand Down Expand Up @@ -1304,7 +1293,6 @@ lazy val root = crossProject(JSPlatform, JVMPlatform, NativePlatform)
effektKiama,
jsTypings,
utils,
base,
parser,
compiler,
compiler213,
Expand Down
File renamed without changes.

0 comments on commit 07a5e71

Please sign in to comment.