Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

stdweb example: specify release and fix path #57

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
target/
**/*.rs.bk
Cargo.lock
**/package-lock.json
**/wasm-pack.log
2 changes: 1 addition & 1 deletion examples/stdweb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Simple example of compiling app consuming typed-html to WebAssembly.

Make sure you have `cargo-web` installed: [Instructions](https://github.com/koute/cargo-web/#installation)

Build using `cargo web build`
Build using `cargo web build --release`

_Note: There may be an issue that can be worked around as described [here](https://github.com/bodil/typed-html/issues/6), due to a bug in stdweb_

Expand Down
2 changes: 1 addition & 1 deletion examples/stdweb/www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>typed-html WASM example</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="./typed-html-wasm-test.js"></script>
<script src="./typed-html-stdweb-test.js"></script>
</head>
<body>
</body>
Expand Down