-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
477 lines (441 loc) · 14.3 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
import org.scalajs.linker.interface.ModuleSplitStyle
ThisBuild / tlBaseVersion := "0.72"
ThisBuild / tlCiReleaseBranches := Seq("main")
ThisBuild / githubWorkflowTargetBranches += "!dependabot/**"
ThisBuild / githubWorkflowBuildPreamble ++= Seq(
WorkflowStep.Use(
UseRef.Public("actions", "setup-node", "v4"),
name = Some("Setup Node"),
params = Map("node-version" -> "20", "cache" -> "npm")
),
WorkflowStep.Run(List("npm ci"))
)
ThisBuild / mergifyPrRules +=
MergifyPrRule(
"merge dependabot PRs",
MergifyCondition.Custom("author=dependabot[bot]") :: mergifySuccessConditions.value.toList,
List(MergifyAction.Merge())
)
val catsV = "2.12.0"
val disciplineMunitV = "2.0.0"
val http4sV = "0.23.29"
val kittensV = "3.4.0"
val lucumaTypedV = "0.7.0"
val munitScalacheckV = "1.0.0"
val munitV = "1.0.2"
val scalaJsDomV = "2.8.0"
val scalaJsReactV = "3.0.0-beta6"
val utestV = "0.8.4"
ThisBuild / crossScalaVersions := Seq("3.5.2")
lazy val facadeSettings = Seq(
libraryDependencies ++= Seq(
"com.github.japgolly.scalajs-react" %%% "core" % scalaJsReactV,
"com.github.japgolly.scalajs-react" %%% "extra" % scalaJsReactV,
"com.github.japgolly.scalajs-react" %%% "test" % scalaJsReactV % Test,
"org.typelevel" %%% "cats-core" % catsV,
"org.typelevel" %%% "kittens" % kittensV,
"org.scala-js" %%% "scalajs-dom" % scalaJsDomV,
"com.lihaoyi" %%% "utest" % utestV % Test,
"org.scalameta" %%% "munit" % munitV % Test
),
jsEnv := new lucuma.LucumaJSDOMNodeJSEnv(),
scalaJSLinkerConfig ~= { _.withModuleKind(ModuleKind.CommonJSModule) },
testFrameworks += new TestFramework("utest.runner.Framework")
)
lazy val viteConfigGenerate = taskKey[Unit]("Generate vite config")
lazy val demoSettings = Seq(
Compile / scalaJSLinkerConfig ~= { _.withModuleKind(ModuleKind.ESModule) },
Compile / fastLinkJS / scalaJSLinkerConfig ~= (_.withModuleSplitStyle(
ModuleSplitStyle.SmallModulesFor(List("lucuma.react"))
)),
Keys.test := {},
viteConfigGenerate := {
val prodTarget =
(Compile / fullLinkJS / scalaJSLinkerOutputDirectory).value
.relativeTo(baseDirectory.value)
.get
val devTarget =
(Compile / fastLinkJS / scalaJSLinkerOutputDirectory).value
.relativeTo(baseDirectory.value)
.get
IO.write(
baseDirectory.value / "vite.config.js",
s"""|import react from "@vitejs/plugin-react";
|import path from "path";
|
|// https://vitejs.dev/config/
|export default ({ command, mode }) => {
| const sjs =
| mode == "production"
| ? path.resolve(__dirname, "$prodTarget/")
| : path.resolve(__dirname, "$devTarget/");
| const webapp = path.resolve(__dirname, "src/main/webapp/");
| const themeConfig = path.resolve(webapp, "theme/theme.config");
| const themeSite = path.resolve(webapp, "theme/site");
| return {
| root: "${baseDirectory.value.getName}/src/main/webapp",
| resolve: {
| alias: [
| {
| find: "@sjs",
| replacement: sjs,
| },
| {
| find: "../../theme.config",
| replacement: themeConfig,
| },
| {
| find: "theme/site",
| replacement: themeSite,
| },
| ],
| },
| server: {
| watch: {
| ignored: [
| function ignoreThisPath(_path) {
| const sjsIgnored =
| _path.includes("/target/stream") ||
| _path.includes("/zinc/") ||
| _path.includes("/classes");
| return sjsIgnored;
| },
| ],
| },
| },
| build: {
| outDir: path.resolve(__dirname, "../docs"),
| },
| plugins: [react()],
| };
|};
|""".stripMargin
)
}
)
lazy val root = project
.in(file("."))
.enablePlugins(NoPublishPlugin)
.aggregate(
common,
test,
gridLayout,
gridLayoutDemo,
draggable,
floatingui,
tanstackTable,
tanstackTableDemo,
highcharts,
highchartsDemo,
datepicker,
datepickerDemo,
beautifulDnd,
beautifulDndDemo,
resizeDetector,
resizeDetectorDemo,
fontAwesome,
fontAwesomeDemo,
hotkeys,
hotkeysDemo,
resizable,
resizableDemo,
primeReact,
primeReactDemo,
circularProgressbar,
markdown
)
lazy val rootCore = project.aggregate(common, test).enablePlugins(NoPublishPlugin)
lazy val rootGridLayout =
project.aggregate(resizeDetector, gridLayout, gridLayoutDemo).enablePlugins(NoPublishPlugin)
lazy val rootDraggable =
project.aggregate(draggable).enablePlugins(NoPublishPlugin)
lazy val rootFloatingui =
project.aggregate(floatingui).enablePlugins(NoPublishPlugin)
lazy val rootTanstackTable =
project.aggregate(tanstackTable, tanstackTableDemo).enablePlugins(NoPublishPlugin)
lazy val rootHighcharts =
project.aggregate(highcharts, highchartsDemo).enablePlugins(NoPublishPlugin)
lazy val rootDatepicker =
project.aggregate(datepicker, datepickerDemo).enablePlugins(NoPublishPlugin)
lazy val rootBeautifulDnd =
project.aggregate(beautifulDnd, beautifulDndDemo).enablePlugins(NoPublishPlugin)
lazy val rootFontAwesome =
project.aggregate(fontAwesome, fontAwesomeDemo).enablePlugins(NoPublishPlugin)
lazy val rootHotkeys =
project.aggregate(hotkeys, hotkeysDemo).enablePlugins(NoPublishPlugin)
lazy val rootResizable =
project.aggregate(resizable, resizableDemo).enablePlugins(NoPublishPlugin)
lazy val rootPrimeReact =
project.aggregate(primeReact, primeReactDemo).enablePlugins(NoPublishPlugin)
val projects = List(
rootCore,
rootGridLayout,
rootDraggable,
rootFloatingui,
rootTanstackTable,
rootHighcharts,
rootDatepicker,
rootBeautifulDnd,
rootFontAwesome,
rootHotkeys,
rootResizable,
rootPrimeReact,
circularProgressbar,
markdown
).map(_.id)
ThisBuild / githubWorkflowBuildMatrixAdditions += "project" -> projects
ThisBuild / githubWorkflowBuildSbtStepPreamble += s"project $${{ matrix.project }}"
ThisBuild / githubWorkflowArtifactDownloadExtraKeys += "project"
lazy val common = project
.in(file("common"))
.enablePlugins(ScalaJSPlugin)
.settings(
name := "lucuma-react-common",
libraryDependencies ++= Seq(
"com.github.japgolly.scalajs-react" %%% "core" % scalaJsReactV,
"org.typelevel" %%% "cats-core" % catsV,
"org.typelevel" %%% "cats-laws" % catsV % Test,
"org.scalameta" %%% "munit-scalacheck" % munitScalacheckV % Test,
"org.typelevel" %%% "discipline-munit" % disciplineMunitV % Test
)
)
lazy val test = project
.in(file("test"))
.enablePlugins(ScalaJSPlugin)
.settings(
name := "lucuma-react-test",
jsEnv := new lucuma.LucumaJSDOMNodeJSEnv(),
scalaJSLinkerConfig ~= { _.withModuleKind(ModuleKind.CommonJSModule) },
libraryDependencies ++= Seq(
"org.scalameta" %%% "munit" % munitV,
"org.typelevel" %%% "discipline-munit" % disciplineMunitV % Test,
"com.github.japgolly.scalajs-react" %%% "test" % scalaJsReactV % Test
)
)
.dependsOn(common)
lazy val gridLayout = project
.in(file("grid-layout"))
.enablePlugins(ScalaJSPlugin)
.dependsOn(common)
.settings(
name := "lucuma-react-grid-layout",
facadeSettings
)
lazy val gridLayoutDemo = project
.in(file("grid-layout-demo"))
.enablePlugins(ScalaJSPlugin, NoPublishPlugin)
.dependsOn(gridLayout, resizeDetector)
.settings(
libraryDependencies += "com.lihaoyi" %%% "pprint" % "0.9.0",
demoSettings
)
lazy val draggable = project
.in(file("draggable"))
.enablePlugins(ScalaJSPlugin)
.dependsOn(common)
.settings(
name := "lucuma-react-draggable",
facadeSettings
)
lazy val floatingui = project
.in(file("floatingui"))
.enablePlugins(ScalaJSPlugin)
.dependsOn(common, test % Test)
.settings(
name := "lucuma-react-floatingui",
facadeSettings
)
lazy val tanstackTable = project
.in(file("tanstack-table"))
.enablePlugins(ScalaJSPlugin)
.dependsOn(common)
.settings(
name := "lucuma-react-tanstack-table",
Compile / scalacOptions += "-language:implicitConversions",
libraryDependencies ++= Seq(
"edu.gemini" %%% "lucuma-typed-tanstack-react-table" % lucumaTypedV,
"edu.gemini" %%% "lucuma-typed-tanstack-react-virtual" % lucumaTypedV
)
)
lazy val tanstackTableDemo = project
.in(file("tanstack-table-demo"))
.enablePlugins(ScalaJSPlugin, NoPublishPlugin)
.dependsOn(tanstackTable)
.settings(
demoSettings
)
.settings(
Compile / scalacOptions += "-language:implicitConversions"
)
lazy val highcharts = project
.in(file("highcharts"))
.enablePlugins(ScalaJSPlugin, ScalaJSImportMapPlugin)
.dependsOn(common, resizeDetector)
.settings(
name := "lucuma-react-highcharts",
Compile / scalacOptions += "-language:implicitConversions",
libraryDependencies ++= Seq(
"edu.gemini" %%% "lucuma-typed-highcharts" % lucumaTypedV
),
facadeSettings,
Test / scalaJSImportMap := {
case "highcharts/es-modules/masters/highcharts.src.js" => "highcharts"
case "highcharts/es-modules/masters/modules/accessibility.src.js" =>
"highcharts/modules/accessibility"
case other => other
}
)
lazy val highchartsDemo = project
.in(file("highcharts-demo"))
.enablePlugins(ScalaJSPlugin, NoPublishPlugin)
.dependsOn(highcharts)
.settings(
tlFatalWarnings := false,
demoSettings
)
lazy val datepicker = project
.in(file("datepicker"))
.enablePlugins(ScalaJSPlugin)
.dependsOn(common)
.settings(
name := "lucuma-react-datepicker",
Compile / scalacOptions += "-language:implicitConversions",
libraryDependencies ++= Seq(
"edu.gemini" %%% "lucuma-typed-react-datepicker" % lucumaTypedV
),
facadeSettings
)
lazy val datepickerDemo = project
.in(file("datepicker-demo"))
.enablePlugins(ScalaJSPlugin, NoPublishPlugin)
.dependsOn(datepicker)
.settings(
demoSettings,
Compile / scalacOptions += "-language:implicitConversions",
libraryDependencies ++= Seq(
"io.github.cquiroz" %%% "scala-java-time" % "2.6.0"
)
)
lazy val beautifulDnd = project
.in(file("beautiful-dnd"))
.enablePlugins(ScalaJSPlugin)
.dependsOn(common)
.settings(
name := "lucuma-react-beautiful-dnd",
facadeSettings
)
lazy val beautifulDndDemo = project
.in(file("beautiful-dnd-demo"))
.enablePlugins(ScalaJSPlugin, NoPublishPlugin)
.dependsOn(beautifulDnd)
.settings(
Compile / scalacOptions += "-language:implicitConversions",
demoSettings
)
lazy val resizeDetector = project
.in(file("resize-detector"))
.enablePlugins(ScalaJSPlugin)
.dependsOn(common)
.settings(
name := "lucuma-react-resize-detector",
Compile / scalacOptions += "-language:implicitConversions",
facadeSettings
)
lazy val resizeDetectorDemo = project
.in(file("resize-detector-demo"))
.enablePlugins(ScalaJSPlugin, NoPublishPlugin)
.dependsOn(resizeDetector)
.settings(
Compile / scalacOptions += "-language:implicitConversions",
demoSettings
)
lazy val fontAwesome = project
.in(file("font-awesome"))
.enablePlugins(ScalaJSPlugin)
.dependsOn(common)
.settings(
name := "lucuma-react-font-awesome",
Compile / scalacOptions += "-language:implicitConversions",
facadeSettings
)
lazy val fontAwesomeDemo = project
.in(file("font-awesome-demo"))
.enablePlugins(ScalaJSPlugin, NoPublishPlugin)
.dependsOn(fontAwesome)
.settings(
Compile / scalacOptions += "-language:implicitConversions",
demoSettings
)
lazy val hotkeys = project
.in(file("hotkeys-hooks"))
.enablePlugins(ScalaJSPlugin)
.dependsOn(common)
.settings(
name := "lucuma-react-hotkeys-hooks",
Compile / scalacOptions += "-language:implicitConversions",
facadeSettings
)
lazy val hotkeysDemo = project
.in(file("hotkeys-demo"))
.enablePlugins(ScalaJSPlugin, NoPublishPlugin)
.dependsOn(hotkeys)
.settings(
Compile / scalacOptions += "-language:implicitConversions",
demoSettings
)
lazy val resizable = project
.in(file("resizable"))
.enablePlugins(ScalaJSPlugin)
.dependsOn(common, draggable)
.settings(
name := "lucuma-react-resizable",
Compile / scalacOptions += "-language:implicitConversions",
facadeSettings
)
lazy val resizableDemo = project
.in(file("resizable-demo"))
.enablePlugins(ScalaJSPlugin, NoPublishPlugin)
.dependsOn(resizable)
.settings(
Compile / scalacOptions += "-language:implicitConversions",
demoSettings
)
lazy val primeReact = project
.in(file("prime-react"))
.enablePlugins(ScalaJSPlugin)
.dependsOn(common, fontAwesome)
.settings(
name := "lucuma-react-prime-react",
Compile / scalacOptions += "-language:implicitConversions",
libraryDependencies ++= Seq(
"edu.gemini" %%% "lucuma-typed-primereact" % lucumaTypedV
)
)
lazy val primeReactDemo = project
.in(file("prime-react-demo"))
.enablePlugins(ScalaJSPlugin, NoPublishPlugin)
.dependsOn(primeReact)
.settings(
Compile / scalacOptions += "-language:implicitConversions",
demoSettings
)
lazy val circularProgressbar = project
.in(file("circular-progressbar"))
.enablePlugins(ScalaJSPlugin)
.dependsOn(common, test % Test)
.settings(
name := "lucuma-react-circular-progressbar",
facadeSettings
)
lazy val markdown = project
.in(file("markdown"))
.enablePlugins(ScalaJSPlugin)
.dependsOn(common)
.settings(
name := "lucuma-react-markdown",
facadeSettings,
Keys.test := {},
libraryDependencies ++= Seq(
"org.http4s" %%% "http4s-core" % http4sV
)
)