Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenhuyn committed Apr 28, 2023
1 parent 33b4418 commit 99c2b41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/src/components/cubeway-simulation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { LitElement, css, html } from "lit";
import { customElement, property } from "lit/decorators.js";
import litLogo from "../assets/lit.svg";
import viteLogo from "/vite.svg";
import init, { greet, run } from "../../../cubeway/pkg/cubeway";
import init from "../../../cubeway/pkg/cubeway";

/**
* An example element.
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"name": "web-cubeway",
"version": "1.0.0",
"scripts": {
"dev": "concurrently \"cd cubeway && cargo watch -- wasm-pack build --target web\" \"cd app && npm run dev\""
"dev": "concurrently \"cd cubeway && cargo watch -- wasm-pack build --target web\" \"cd app && npm run dev\"",
"build": "concurrently \"cd cubeway && wasm-pack build --target web\" \"cd app && npm run build\""
},
"keywords": [],
"author": "",
Expand Down

0 comments on commit 99c2b41

Please sign in to comment.