Updated the deps and package in www

This commit is contained in:
Sambo Chea 2020-08-20 17:49:00 +07:00
parent e7b88b96e1
commit fd8f0e772c
4 changed files with 20 additions and 10 deletions

View File

@ -44,5 +44,8 @@ wasm-bindgen-test = "0.3.13"
# Tell `rustc` to optimize for small code size.
opt-level = "s"
[package.metadata.wasm-pack.profile.dev]
wasm-opt = false
[package.metadata.wasm-pack.profile.release]
wasm-opt = false

View File

@ -1,8 +1,8 @@
use wasm_bindgen::prelude::*;
use math;
extern crate web_sys;
use math;
use wasm_bindgen::prelude::*;
mod utils;
// When the `wee_alloc` feature is enabled, use `wee_alloc` as the global
@ -16,6 +16,11 @@ pub fn run() {
log("[WASM] internal logging...");
}
#[wasm_bindgen]
pub fn sample() -> String {
"hello".into()
}
#[wasm_bindgen]
extern {
fn alert(s: &str);

View File

@ -1,8 +1,7 @@
// import * as wasm from "hello-wasm-pack";
// import * as wasm from 'wasmweb-sample'
//
// wasm.log("[WEB] external logging...")
//
// const greeting = wasm.greet()
// const sum = wasm.just_sum()
// console.log("Sum of number", sum)
// @ts-ignore
import {just_sum,log} from 'wasmweb-sample'
log("d")
const sum = just_sum()
console.log("Sum of number", sum)

View File

@ -33,5 +33,8 @@
"webpack": "^4.29.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"wasmweb-sample": "file:../pkg"
}
}