Commit Graph

209 Commits

Author SHA1 Message Date
f58c436f77 Prep work for the 0.1 release 2018-03-05 20:24:35 -08:00
98030e0e4a Switch from version strings to schema versions
Should help reduce some churn a bit!
0.1.0
2018-03-05 20:05:44 -08:00
1db5b3fb50 Add Travis/AppVeyor deployments 2018-03-05 20:05:39 -08:00
ddf27f0ab1 Merge pull request #55 from sendilkumarn/fix-no-mangle
Remove no_mangle and extern wherever applicable
2018-03-05 17:07:08 -06:00
49a7b9fef5 Merge branch 'master' into fix-no-mangle 2018-03-05 23:26:22 +01:00
0dd8a77757 fix: remove unwanted no_mangle and extern wherever applicable 2018-03-05 23:25:15 +01:00
e46a613ad7 Merge pull request #54 from sendilkumarn/fix-file-name
feat: rename generated file to have bg instead of wasm
2018-03-05 16:07:21 -06:00
d5ac523fe2 feat: rename generated file to have bg instead of wasm 2018-03-05 22:25:14 +01:00
644e96cd46 Tweak layout for Chrome 2018-03-05 02:51:10 -08:00
568939bbcc Merge branch 'hello-wasm2es6js' of https://github.com/sophiebits/wasm-bindgen 2018-03-05 02:34:03 -08:00
67601c4293 No more need to optimize in dev! 2018-03-04 18:23:23 -08:00
f06dfd0a7d Hopefully fix up yml 2018-03-04 12:48:53 -08:00
94001c3303 Don't run servers on CI 2018-03-04 12:16:01 -08:00
67411f519c Add workaround for hello_world running in Chrome
Fixes #50.
2018-03-03 10:46:43 -08:00
98b9bee876 Add some comments to the hello-world example 2018-03-02 20:32:48 -08:00
e7f7f7864a Run smorgasboard example on CI 2018-03-02 20:21:44 -08:00
4ebb3df330 Add a smorgasboard example 2018-03-02 20:19:39 -08:00
4aa6793b9e Rewrite the README using Webpack
Right now Webpack probably has the most mature support for loading wasm modules,
so let's show off how to do that! Additionally this commits hello world as an
example to the repository.
2018-03-02 20:12:00 -08:00
30986dacad Merge pull request #48 from alexcrichton/no-glboal
Don't run `npm install` during tests
2018-03-02 21:29:02 -06:00
d9e1dae298 Migrate from rollup to webpack in tests
Building on the previous commit to invoke not invoke `npm install` this takes
the commit a step further (to hopefully fix some races) to use Webpack's native
bundled wasm support.

It turns out the circular dependencies between the wasm module and the module
using it wasn't quite working out so a number of imports had to be tweaked, but
otherwise it's a nice transition where we don't have to base64 encode anything
in tests any more!
2018-03-02 19:20:14 -08:00
353794417c Don't run npm install during tests
Instead add a `package.json` and use `yarn run`.
2018-03-02 15:44:28 -08:00
31853ad0ba Require version agreement between CLI and dep
One day may be able to relax this but for now its not tenable!

Closes #47
2018-03-01 19:36:59 -08:00
1c8061e675 Implement a version string
Add a `--version` and `-V` to the command to print out the version
2018-03-01 19:19:12 -08:00
36f064bed0 Merge pull request #40 from rylev/return-vec-jsvalue
Enable returning a vector of js values
2018-02-28 11:59:15 -06:00
17ca87cabb Add to README that Vec<JsValue> cannot be passed to functions 2018-02-28 17:33:16 +01:00
37da9eba14 Address feedback on commit dab6ba1 2018-02-28 17:29:40 +01:00
dab6ba1df8 Enable returning a vector of js values 2018-02-28 10:56:56 +01:00
19f88f0fd2 Update parity-wasm dep 2018-02-26 17:11:56 -08:00
90882bb06f Mention enums in the README 2018-02-26 15:32:07 -08:00
00115c6e7d No longer generates TypeScript by default
remove an errant comment from the README
2018-02-26 15:31:18 -08:00
97c021a53c Merge pull request #36 from rylev/enums
C-Style Enums
2018-02-26 17:30:50 -06:00
6a7c9710ca Merge pull request #38 from rylev/readme-section-test
Add section on node dependency in README
2018-02-25 04:24:33 +09:00
f1b300c8aa get rid of unnecessary mutable var 2018-02-23 19:06:23 +01:00
3ae6614738 Add test for custom values in enums 2018-02-23 17:44:48 +01:00
f783876192 Support C-Style enums with custom int values 2018-02-23 17:38:02 +01:00
71880b8a83 Enums are numbers 2018-02-23 17:34:08 +01:00
3a270b6510 Add test for enums 2018-02-23 17:30:18 +01:00
89b0b8f20a Add section on node dependency in README 2018-02-23 14:52:45 +01:00
b78343a551 Fix enum formatting issues 2018-02-22 12:11:47 +01:00
7f8316f89b Clean up warnings 2018-02-22 12:08:28 +01:00
f11121b095 Generate enum js code 2018-02-22 12:01:38 +01:00
45543c545e Pass numbers in js as enums to Rust successfully 2018-02-22 10:55:44 +01:00
01c31cb33d Create Rust wrapping code for enums 2018-02-22 00:55:11 +01:00
4d86fca327 Merge pull request #34 from rylev/ensure-memory-exposed
Ensure Memory Accesses are Exposed Before Accessing
2018-02-19 10:35:07 +09:00
0f8524da3c Ensure memory accesses are exposed before accessing 2018-02-18 23:55:34 +01:00
d66bc25749 Automatically bind float math functions
These tend to have one "pretty obvious" definition in JS anyway, so
let's paper over this deficiency in rustc for now by automatically
resolving any imports for these functions.

Closes #28
2018-02-17 16:44:31 -08:00
9e7a4e7e60 Fix a few more mistakes from slices 2018-02-16 19:19:31 -08:00
0970fa2998 Fix duplicated definition of a constant 2018-02-16 19:06:48 -08:00
3c58aa7310 Support integer/float slices/vectors
Closes #5
2018-02-16 18:58:37 -08:00
7802535948 Fix #[wasm_bindgen] on structs with no exports
It should still be usable in other types!

Closes #27
2018-02-16 13:50:14 -08:00