Nick Fitzgerald
6 months ago
committed by
GitHub
9 changed files with 1173 additions and 61 deletions
@ -0,0 +1,6 @@ |
|||
*.html |
|||
*.css |
|||
*.toml |
|||
*.rs |
|||
*.yml |
|||
|
@ -0,0 +1,3 @@ |
|||
{ |
|||
"arrowParens": "avoid" |
|||
} |
@ -0,0 +1,12 @@ |
|||
import js from "@eslint/js"; |
|||
|
|||
export default [ |
|||
js.configs.recommended, |
|||
|
|||
{ |
|||
rules: { |
|||
"no-unused-vars": "error", |
|||
"no-undef": "error", |
|||
}, |
|||
}, |
|||
]; |
File diff suppressed because it is too large
@ -0,0 +1,28 @@ |
|||
{ |
|||
"name": "wasmtime-explorer", |
|||
"version": "1.0.0", |
|||
"main": "src/index.js", |
|||
"scripts": { |
|||
"test": "echo \"Error: no test specified\" && exit 1", |
|||
"lint": "eslint", |
|||
"fmt": "prettier --write .", |
|||
"fmt-check": "prettier --check ." |
|||
}, |
|||
"repository": { |
|||
"type": "git", |
|||
"url": "git+https://github.com/bytecodealliance/wasmtime.git#main" |
|||
}, |
|||
"author": "The Wasmtime Project Developers", |
|||
"license": "Apache-2.0 WITH LLVM-exception", |
|||
"bugs": { |
|||
"url": "https://github.com/bytecodealliance/wasmtime/issues" |
|||
}, |
|||
"homepage": "https://github.com/bytecodealliance/wasmtime/tree/main#readme", |
|||
"description": "", |
|||
"devDependencies": { |
|||
"@eslint/js": "^9.3.0", |
|||
"eslint": "^9.3.0", |
|||
"prettier": "3.2.5" |
|||
}, |
|||
"type": "module" |
|||
} |
@ -1,26 +1,27 @@ |
|||
* { |
|||
margin: 0; |
|||
padding: 0; |
|||
margin: 0; |
|||
padding: 0; |
|||
} |
|||
|
|||
.hbox { |
|||
display: flex; |
|||
flex-direction: row; |
|||
display: flex; |
|||
flex-direction: row; |
|||
} |
|||
|
|||
html, body { |
|||
width: 100%; |
|||
height: 100%; |
|||
html, |
|||
body { |
|||
width: 100%; |
|||
height: 100%; |
|||
} |
|||
|
|||
#wat { |
|||
width: 50%; |
|||
height: 100%; |
|||
overflow: scroll; |
|||
width: 50%; |
|||
height: 100%; |
|||
overflow: scroll; |
|||
} |
|||
|
|||
#asm { |
|||
width: 50%; |
|||
height: 100%; |
|||
overflow: scroll; |
|||
width: 50%; |
|||
height: 100%; |
|||
overflow: scroll; |
|||
} |
|||
|
Loading…
Reference in new issue