Skip to content

Commit

Permalink
update config
Browse files Browse the repository at this point in the history
  • Loading branch information
nokotan committed Feb 17, 2024
1 parent bc9e909 commit e2ab268
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion build/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,15 @@ 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 });
await buildExtension("gistpad", {
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" ],
Expand Down
10 changes: 5 additions & 5 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
1 change: 1 addition & 0 deletions wasmer-terminal/rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[toolchain]
channel = "nightly"
components = [ "rustfmt", "rust-src", "clippy" ]
targets = [ "wasm32-unknown-unknown" ]
profile = "minimal"

0 comments on commit e2ab268

Please sign in to comment.