mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 22:10:15 +03:00
d9972d547a
Fixes #10197 # Important Notes From now on, package installation will be using `pnpm install`. Installing it globally is fine for convenience, but it can also be used as `corepack pnpm install` without having to install anything other than node. For now, all other scripts are still invoked using `npm`, so we can still invoke them with usual `--workspace` setting. As far as I can tell that doesn't really have any other side effects and is identical as running the script through `pnpm run` in respective workspace project subdirectory.
94 lines
3.1 KiB
Scala
94 lines
3.1 KiB
Scala
import sbt.*
|
|
import sbt.Keys.TaskStreams
|
|
|
|
import scala.sys.process.*
|
|
|
|
object Ydoc {
|
|
|
|
private val npmCommand = if (Platform.isWindows) "npm.cmd" else "npm"
|
|
private val pnpmCommand =
|
|
if (Platform.isWindows) "corepack.cmd pnpm" else "corepack pnpm"
|
|
|
|
/** Generates the bundled JS source of the Ydoc server.
|
|
*
|
|
* @param base the path to the base directory of this build
|
|
* @param ydocServerBase the path to the base directory of the ydoc-server project
|
|
* @param ydocServerResourceManaged the paht to the managed resources directory
|
|
* @param streams the build streams
|
|
* @return the list of generated files
|
|
*/
|
|
def generateJsBundle(
|
|
base: File,
|
|
ydocServerBase: File,
|
|
ydocServerResourceManaged: File,
|
|
streams: TaskStreams
|
|
): Seq[File] = {
|
|
runNpmInstallCached(base, streams)
|
|
|
|
generateJsBundleCached(
|
|
base,
|
|
ydocServerBase,
|
|
ydocServerResourceManaged,
|
|
streams
|
|
)
|
|
}
|
|
|
|
/** Cached JS bundle generator. Invokes the `npm` build only the input files have been changed.
|
|
*
|
|
* @param base the path to the base directory of this build
|
|
* @param ydocServerBase the path to the base directory of the ydoc-server project
|
|
* @param ydocServerResourceManaged the path the managed resources directory
|
|
* @param streams the build streams
|
|
* @return the list of generated files
|
|
*/
|
|
private def generateJsBundleCached(
|
|
base: File,
|
|
ydocServerBase: File,
|
|
ydocServerResourceManaged: File,
|
|
streams: TaskStreams
|
|
): Seq[File] = {
|
|
val store = streams.cacheStoreFactory.make("ydoc-server-cache")
|
|
val generator = Tracked.inputChanged[Seq[File], Seq[File]](store) {
|
|
case (changed, _) =>
|
|
val resourceYdocServerJs =
|
|
ydocServerResourceManaged / "org" / "enso" / "ydoc" / "ydocServer.js"
|
|
|
|
if (changed) {
|
|
val command =
|
|
s"$npmCommand --workspace=enso-gui2 run build-ydoc-server-polyglot"
|
|
streams.log.info(command)
|
|
command ! streams.log
|
|
val generatedYdocServerJs =
|
|
ydocServerBase / "target" / "ydoc-server-bundle" / "assets" / "ydocServer.js"
|
|
IO.copyFile(generatedYdocServerJs, resourceYdocServerJs)
|
|
}
|
|
|
|
Seq(resourceYdocServerJs)
|
|
}
|
|
|
|
val ydocServerSrc = (base / "app" / "gui2" / "ydoc-server") ** "*.ts"
|
|
val sharedSrc = (base / "app" / "gui2" / "shared") ** "*.ts"
|
|
val buildCfg = (base / "app" / "gui2") * ("*.ts" || "*.json")
|
|
val inputFiles = ydocServerSrc +++ sharedSrc +++ buildCfg
|
|
|
|
generator(inputFiles.get)
|
|
}
|
|
|
|
private def runNpmInstallCached(base: File, streams: TaskStreams): Unit = {
|
|
val store = streams.cacheStoreFactory.make("ydoc-server-npm-install-cache")
|
|
val generator = Tracked.inputChanged[File, Unit](store) {
|
|
case (changed, _) =>
|
|
val nodeModules = base / "node_modules"
|
|
if (changed || !nodeModules.isDirectory) {
|
|
val command = s"$pnpmCommand i --frozen-lockfile"
|
|
streams.log.info(command)
|
|
command ! streams.log
|
|
}
|
|
}
|
|
|
|
val inputFile = base / "package-lock.json"
|
|
|
|
generator(inputFile)
|
|
}
|
|
}
|