Skip to content

Commit

Permalink
feat: updated tetanes-web to 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lukexor committed May 16, 2024
1 parent ad7eac9 commit 026bca0
Show file tree
Hide file tree
Showing 25 changed files with 2,429 additions and 425 deletions.
26 changes: 26 additions & 0 deletions web/public/tetanes-web/8e694e2cf66511c1-initializer.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
export default function () {
return {
onStart: () => {
console.log("Loading...");
console.time("initializer");
},
onProgress: ({ current, total }) => {
if (!total) {
console.log(`Loading... ${current} bytes`);
} else {
console.log(`Loading... ${Math.round(current / total) * 100}%`);
}
},
onComplete: () => {
console.log("Loading... done!");
console.timeEnd("initializer");
},
onSuccess: (wasm) => {
console.log("Loading... successful!");
console.log("WebAssembly: ", wasm);
},
onFailure: (error) => {
console.error(`Loading... failed! ${error}`);
},
};
}
1 change: 0 additions & 1 deletion web/public/tetanes-web/dist/607.bundle.js

This file was deleted.

Binary file not shown.
1 change: 0 additions & 1 deletion web/public/tetanes-web/dist/bundle.js

This file was deleted.

Binary file removed web/public/tetanes-web/emulogic.ttf
Binary file not shown.
Loading

0 comments on commit 026bca0

Please sign in to comment.