From e2ab268579fa7e4cb7f487d9f5be5bb98d2604cc Mon Sep 17 00:00:00 2001 From: nokotan Date: Sun, 18 Feb 2024 03:59:27 +0900 Subject: [PATCH] update config --- build/main.ts | 3 ++- src/config.ts | 10 +++++----- wasmer-terminal/rust-toolchain.toml | 1 + 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/build/main.ts b/build/main.ts index 4484d2a..0e39fac 100644 --- a/build/main.ts +++ b/build/main.ts @@ -18,7 +18,7 @@ async function main() { await copyStaticAssets(installationInfo); } -async function deployExtensions() {; +async function deployExtensions() { await buildExtension("wasm-playground", { vsCodePath: installationRoot }); await buildExtension("vscode-clangd", { vsCodePath: installationRoot }); await buildExtension("emscripten-remote-build", { vsCodePath: installationRoot }); @@ -26,6 +26,7 @@ async function deployExtensions() {; vsCodePath: installationRoot, projectName: "gistfs" }); + // stdweb:v0.4.20 is not updated and generates error, disable this extension. // await buildExtension("wasmer-terminal", { // vsCodePath: installationRoot, // vsceOptions: [ "--no-dependencies" ], diff --git a/src/config.ts b/src/config.ts index b80af9f..14c5aeb 100644 --- a/src/config.ts +++ b/src/config.ts @@ -20,11 +20,11 @@ const config = { authority: "wasm-playground.kamenokosoft.com", path: "/addon/vscode-clangd/extension" }, - // { - // scheme: "https", - // authority: "wasm-playground.kamenokosoft.com", - // path: "/addon/wasmer-terminal/extension" - // } + { + scheme: "https", + authority: "wasm-playground.kamenokosoft.com", + path: "/addon/wasmer-terminal/extension" + } ], callbackRoute: "callback", configurationDefaults: { diff --git a/wasmer-terminal/rust-toolchain.toml b/wasmer-terminal/rust-toolchain.toml index e02563a..46b3698 100644 --- a/wasmer-terminal/rust-toolchain.toml +++ b/wasmer-terminal/rust-toolchain.toml @@ -1,4 +1,5 @@ [toolchain] +channel = "nightly" components = [ "rustfmt", "rust-src", "clippy" ] targets = [ "wasm32-unknown-unknown" ] profile = "minimal"