Skip to content
This repository has been archived by the owner on Jan 26, 2022. It is now read-only.

Commit

Permalink
Disable lite-gitignore on JS and Native
Browse files Browse the repository at this point in the history
  • Loading branch information
makenowjust committed Aug 15, 2021
1 parent 4146cd9 commit 27ce3fc
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ lazy val useGimeiDataGenerator = {
)
}

lazy val gitignore = crossProject(JVMPlatform, JSPlatform, NativePlatform)
lazy val gitignore = crossProject(JVMPlatform)
.in(file("modules/lite-gitignore"))
.settings(
name := "lite-gitignore",
Expand All @@ -183,13 +183,9 @@ lazy val gitignore = crossProject(JVMPlatform, JSPlatform, NativePlatform)
commonSettings,
useMunit
)
.jsSettings(commonJSSettings)
.nativeSettings(commonNativeSettings)
.dependsOn(parser)

lazy val gitignoreJVM = gitignore.jvm
lazy val gitignoreJS = gitignore.js
lazy val gitignoreNative = gitignore.native

lazy val grapheme = crossProject(JVMPlatform, JSPlatform, NativePlatform)
.in(file("modules/lite-grapheme"))
Expand Down

0 comments on commit 27ce3fc

Please sign in to comment.