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" } }