Alex Crichton
d7ccf7f2d3
Build wasm-pack in release mode on AppVeyor
...
This is required later for deployment due to copying over
`target/release/wasm-pack.exe`, so let's make sure that it's available when
we're copying things over!
7 years ago
Alex Crichton
c70652657b
Remove `branch: master` from AppVeyor deploy
...
It looks like Windows releases aren't getting build for wasm-pack tags
unfortunately and taking a look at the [last logs][logs] it looks like the
reason is that the `master` branch is required. I'm not actually entirely sure
what's required here but by removing this it's closer to `wasm-bindgen`'s
configuration which I think is working!
[logs]: https://ci.appveyor.com/project/ashleygwilliams/wasm-pack-071k0/build/1.0.72
7 years ago
Alex Crichton
c1a1c983fb
Tweak some README links
...
Update links to point to https://rustwasm.github.io/wasm-pack/ instead of the
in-tree markdown which doesn't always have working hyperlinks (but mdbook
does!). Additionally tweak some getting started code using `wasm_bindgen` as
well as removing some links no longer used.
7 years ago
ashley williams
2ef929dc91
Merge pull request #282 from mstallmo/add-otp-to-publish
...
add support for otp when publishing to npm
7 years ago
ashley williams
947b33fce4
Merge pull request #296 from twilco/improve-cli-messaging
...
Provide single quote separators around missing Cargo.toml fields to improve readability
7 years ago
Tyler Wilcock
45136e3642
Provide single quote separators around missing Cargo.toml field to improve readability
7 years ago
ashley williams
1f0f4403fa
Merge pull request #283 from alexcrichton/windows-download
...
Add listing for precompiled Windows binaries
7 years ago
Alex Crichton
0381aa627a
Add listing for precompiled Windows binaries
...
They're fixed on wasm-bindgen's CI, so let's download/install them!
7 years ago
Mason Stallmo
8a0549f243
add support for otp when publishing to npm
7 years ago
ashley williams
d0fc382c3c
Merge pull request #281 from fitzgen/cache-cargo-install-in-ci
...
CI: re-enable caching for `cargo install`ed tools
7 years ago
Nick Fitzgerald
61636fc5c1
CI: re-enable caching for `cargo install`ed tools
7 years ago
Nick Fitzgerald
89be40df2f
Merge pull request #263 from xmclark/cli-pkg-dir
...
Specify output directory with CLI
7 years ago
Mackenzie Clark
40b0291715
add out dir cli parameter
7 years ago
Michael Gattozzi
995a137b21
Merge pull request #276 from mgattozzi/lockfile
...
chore(deps) Update lockfile
7 years ago
Michael Gattozzi
b0ecf1b33f
chore(deps) Update lockfile
7 years ago
Nick Fitzgerald
cc250589e7
Merge pull request #273 from fitzgen/download-bindgen-instead-of-install
...
Prefer downloading pre-built `wasm-bindgen` binaries
7 years ago
Nick Fitzgerald
7ab7a3f2cb
feature: Use pre-built `wasm-bindgen` CLIs from Github releases
...
Implements downloading tarballs from `wasm-bindgen`'s GitHub releases page and
using them if the current target has pre-built binaries.
7 years ago
Nick Fitzgerald
16acfd38c3
tests: Only invoke `copy_dir` once at a time
...
I don't understand why at all, but doing many `copy_dir`s at once makes my whole
machine freeze up.
7 years ago
Nick Fitzgerald
d5bf5a3ecd
Merge pull request #267 from fitzgen/hyphens-and-underscores
...
fix: Handle both underscores and hypthens as separators in "wasm-bind…
7 years ago
Nick Fitzgerald
b480674df4
fix: Handle both underscores and hypthens as separators in "wasm-bindgen" dependencies
7 years ago
Michael Gattozzi
f2668f8da8
Merge pull request #269 from data-pup/update-lock
...
Updated lockfile.
7 years ago
data-pup
34d39ead78
Updated lockfile.
7 years ago
Nick Fitzgerald
29d332dfab
Merge pull request #265 from fitzgen/double-negatives
...
tidy: Don't use double negatives
7 years ago
Nick Fitzgerald
34676f310b
Merge pull request #259 from xmclark/reorg-travis-deployment-config
...
Reorg travis deployment
7 years ago
Alex Crichton
2e17fa5cd7
Merge pull request #264 from fitzgen/update-dependencies
...
Update dependencies
7 years ago
Nick Fitzgerald
86a7eee755
tidy: Don't use double negatives
7 years ago
Nick Fitzgerald
d07ef5a27f
Merge pull request #244 from data-pup/wasm-bindgen-coord
...
Coordinate wasm-bindgen versions.
7 years ago
Mackenzie Clark
2e2b1fc2b6
create deploy macro and reorg deployment
...
create deploy macro and reorg deployment
add named job env vars
7 years ago
Nick Fitzgerald
73d4adbc12
tidy: Use `Fail::iter_causes` instead of `e.causes().skip(1)`
...
The `iter_causes` method does the `skip(1)` for us and `e.causes()` is now
deprecated. Unfortunately, `Fail::iter_causes` is only implemented on the
trait *object*, not a provided method for all implementations of the trait. This
means that calling it is slightly less ergonomic...
7 years ago
Nick Fitzgerald
b3976bfb5a
tidy(gitignore): Ignore our own log files
7 years ago
Nick Fitzgerald
56cb555b3d
chore(dependencies): Update dependencies
7 years ago
Nick Fitzgerald
b5be9d0c06
Merge pull request #255 from halfzebra/patch-1
...
Fix links in the README.md
7 years ago
Nick Fitzgerald
ff7f8d1f37
Merge pull request #254 from hoodie/feature/fix-readme-links
...
fix(doc): fix links in README
7 years ago
Nick Fitzgerald
1dd8bbaadf
Merge pull request #262 from nikgraf/upgrade-slog
...
chore(dependencies): upgrade slog
7 years ago
data-pup
8301613278
Coordinate wasm-bindgen versions.
7 years ago
Nik Graf
9cf90ac11d
chore(dependencies): upgrade slog
7 years ago
ashley williams
7e1b1fcf12
Merge pull request #256 from erickt/master
...
Skip serializing empty or None values to package.json
7 years ago
Erick Tryzelaar
5df8749154
Skip serializing empty or None values to package.json
7 years ago
Eduard Kyvenko
7b0f9d871a
Fix links in the README.md
7 years ago
Hendrik Sollich
51b820945b
fix(doc): fix links in README
7 years ago
ashley williams
332d624b30
Merge pull request #250 from 1andee/206-create-issue-templates
...
Issue #206 : create issue templates
7 years ago
Ian Duke
c9d468493c
Issue #206 : create issue templates
7 years ago
ashley williams
f4643abd43
Merge pull request #239 from rustwasm/docs
...
Docs
7 years ago
ashley williams
969797c0ca
Merge pull request #243 from fitzgen/running-in-non-crate-dir
...
Running in non crate dir
7 years ago
Nick Fitzgerald
a32b03d7a1
rustfmt: Re run `cargo fmt` for new nightly
7 years ago
Nick Fitzgerald
7fff2b6a15
Better error message when running wasm-pack in a non-crate directory
7 years ago
Nick Fitzgerald
ed35e497c7
Propagate missing `Cargo.toml` errors instead of unwrapping them
...
This allows them to be reported to the user, rather than panic and dump a
human-error failure.
Fixes #242
7 years ago
Nick Fitzgerald
e2e3e49f50
test: Add a failing test case for #242
7 years ago
Ashley Williams
23febb86fb
feat(book): deploy to gh-pages
7 years ago
Ashley Williams
1489623d22
feat(tests): test that the book builds
7 years ago