Switch to a new main entry

This commit is contained in:
Savanni D'Gerinel 2023-05-10 09:42:02 -04:00
parent ab97f266bb
commit c87ab6da7f
2 changed files with 12 additions and 1 deletions

11
kifu/kifu-pwa/src/main.ts Normal file
View File

@ -0,0 +1,11 @@
import init, { CoreApp } from "kifu-wasm";
const main = async () => {
await init();
let coreApi = new CoreApp();
let response = await coreApi.dispatch({ type: "PlayingField" });
console.log("playing field response: ", response);
};
main();

View File

@ -3,7 +3,7 @@ const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
mode: "development",
entry: {
"kifu-bundle": "./src/converter.ts",
"kifu-bundle": "./src/main.ts",
sw: "./src/sw.js",
},
loader: {