From 020c6310ec4322d409c03784a8d44a996f061d2b Mon Sep 17 00:00:00 2001 From: Elijah R Date: Sat, 22 Jun 2024 22:57:01 -0400 Subject: [PATCH] some fixes and improvements to build - change .yarn/ gitignore to include subprojects - add nodejs-rfb to build (and bump it) - add clean script --- .gitignore | 2 +- Justfile | 1 + nodejs-rfb | 2 +- package.json | 3 ++- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index d5db0bf..8c9ed6f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ .parcel-cache/ -.yarn/ +**/.yarn/ **/node_modules/ config.toml diff --git a/Justfile b/Justfile index 2333d22..53bef25 100644 --- a/Justfile +++ b/Justfile @@ -1,5 +1,6 @@ all: yarn workspace @cvmts/cvm-rs run build + yarn workspace @computernewb/nodejs-rfb run build yarn workspace @cvmts/shared run build yarn workspace @cvmts/qemu run build yarn workspace @cvmts/cvmts run build diff --git a/nodejs-rfb b/nodejs-rfb index ca99bcc..55e9e6c 160000 --- a/nodejs-rfb +++ b/nodejs-rfb @@ -1 +1 @@ -Subproject commit ca99bccda86a39d7cbe80ce5ac45bb6ce4f5e757 +Subproject commit 55e9e6cd65988dce59f53a3ea8701a90073b55a4 diff --git a/package.json b/package.json index 0f51c82..63a02be 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,7 @@ "packageManager": "yarn@4.1.1", "scripts": { "build": "just", - "serve": "node cvmts/dist/index.js" + "serve": "node cvmts/dist/index.js", + "clean": "rm -rf .parcel-cache .yarn **/node_modules **/dist cvm-rs/target cvm-rs/index.node" } }