Daniel Iisak Mikael Kristiansson
e4d5466936
fix assumption in prior commit
11 months ago
Daniel Iisak Mikael Kristiansson
4059310b96
fix prior commit
11 months ago
Daniel Iisak Mikael Kristiansson
fde85de5a6
add linux aarch64 to targets; bump binaryen vers.
11 months ago
Jesper Håkansson
32aaecfb9b
Merge pull request #1348 from sigmaSd/patch-1
...
chore: document deno in build target
1 year ago
Jesper Håkansson
8aa2e670d4
Merge pull request #1344 from puxiao/master
...
Docs: Add a description of `build --target deno`
1 year ago
Jesper Håkansson
6a76f640c2
Merge pull request #1370 from Storykit/pack-and-publish-pkg-dir-option
...
pkg-dir option for pack and publish commands
1 year ago
Jesper Håkansson
abc6078f51
Merge pull request #1321 from sisou/sisou/no-opt
...
Add option to skip optimization with wasm-opt
1 year ago
Jesper Håkansson
e190fd66a2
Merge pull request #1363 from nathaniel-daniel/mingw
...
Add mingw support to npm package
1 year ago
Jesper Håkansson
2d69319dff
Merge pull request #1368 from Lionelf329/patch-1
...
Fix typo in README.md
1 year ago
Jesper Håkansson
8ed5e2480b
Merge pull request #1375 from rustwasm/dependabot/npm_and_yarn/npm/follow-redirects-1.15.6
...
chore(deps): bump follow-redirects from 1.14.9 to 1.15.6 in /npm
1 year ago
dependabot[bot]
88c9accb4d
chore(deps): bump follow-redirects from 1.14.9 to 1.15.6 in /npm
...
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects ) from 1.14.9 to 1.15.6.
- [Release notes](https://github.com/follow-redirects/follow-redirects/releases )
- [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.14.9...v1.15.6 )
---
updated-dependencies:
- dependency-name: follow-redirects
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
1 year ago
Daniel Rönnkvist
95cb35c832
pkg-dir option for pack and publish commands
...
To be able to use these commands when the output directory option to the
build command isn't the default pkg.
Resolves #1369
1 year ago
Lionel Foxcroft
a204502016
Fix typo in README.md
1 year ago
U-NEWCASTLE\natha
25a90294ad
Add mingw support to npm package
1 year ago
sigmaSd
40de622522
chore: document deno in build target
1 year ago
Jesper Håkansson
bdc4884fc5
chore: Bump binary-install
1 year ago
Jesper Håkansson
aef32f39b9
chore: Update Cargo.lock
1 year ago
Jesper Håkansson
36b4f2a979
Merge pull request #1323 from rustwasm/dependabot/cargo/rustls-webpki-0.100.2
...
chore(deps): bump rustls-webpki from 0.100.1 to 0.100.2
1 year ago
Jesper Håkansson
ab7159621a
Merge pull request #1341 from rustwasm/dependabot/cargo/rustix-0.37.25
...
chore(deps): bump rustix from 0.37.20 to 0.37.25
1 year ago
Jesper Håkansson
3ab57e93b1
Merge pull request #1320 from lucashorward/fix-install-script
...
Fix error and warnings in install script
1 year ago
Jesper Håkansson
8cba32f004
Merge pull request #1325 from Myriad-Dreamin/new-chromdriver-endpoint
...
Use new chromdriver endpoint
1 year ago
Jesper Håkansson
77b8ced6bc
Merge pull request #1061 from gthb/esm-type-and-main-in-package-json
...
fix: declare ES module in package.json
1 year ago
Gunnlaugur Þór Briem
473dbf8fae
Merge branch 'master' into esm-type-and-main-in-package-json
1 year ago
Jesper Håkansson
6bf80bbf88
Merge pull request #1343 from daidoji/bug-issue-1342-non-rustup-builds-fail
...
Rewrite wasm_target to use target-libdir
1 year ago
puxiao
fd107ccab8
Update build.md
2 years ago
Charles Lanahan
dde4b47e87
Rewrite wasm_target to use target-libdir
...
Rewritten wasm_target to use target libdir from the rustc tool rather
than looking through sysroot. This is to accomodate non-rustup
installations.
2 years ago
dependabot[bot]
224aa8cef9
chore(deps): bump rustix from 0.37.20 to 0.37.25
...
Bumps [rustix](https://github.com/bytecodealliance/rustix ) from 0.37.20 to 0.37.25.
- [Release notes](https://github.com/bytecodealliance/rustix/releases )
- [Commits](https://github.com/bytecodealliance/rustix/compare/v0.37.20...v0.37.25 )
---
updated-dependencies:
- dependency-name: rustix
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
2 years ago
Myriad-Dreamin
49c1e93f7d
Select correct target for chromedriver
2 years ago
Myriad-Dreamin
fc220e8afb
Use new endpoints for chromedriver
2 years ago
dependabot[bot]
3a0e37cb52
chore(deps): bump rustls-webpki from 0.100.1 to 0.100.2
...
Bumps [rustls-webpki](https://github.com/rustls/webpki ) from 0.100.1 to 0.100.2.
- [Release notes](https://github.com/rustls/webpki/releases )
- [Commits](https://github.com/rustls/webpki/compare/v/0.100.1...v/0.100.2 )
---
updated-dependencies:
- dependency-name: rustls-webpki
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
2 years ago
Sören
a079a63590
Add option to skip optimization with wasm-opt
2 years ago
Lucas Horward
afb63e6606
Fix error and warnings in install script
...
- Fixed error on line 139 - "==" was being used, whereas sh expects a "=" (and we do this correctly throughout the rest of the file). See https://www.shellcheck.net/wiki/SC3014 for more.
- Changed the use of backticks to the use of `$()` as specified in https://www.shellcheck.net/wiki/SC2006
- Changed the use of `-a` to `&&` as specified in https://www.shellcheck.net/wiki/SC2166
Closes #1159
Closes #1217
Closes #1283
2 years ago
Jesper Håkansson
7d6501d3cd
Merge pull request #1310 from rustwasm/0.12.1
...
0.12.1
2 years ago
Jesper Håkansson
e25150ecd3
0.12.1
2 years ago
Jesper Håkansson
c8dfdec909
Merge pull request #1307 from Myriad-Dreamin/fix-path-value-parser
...
Fix value parser for `Option<PathBuf>`
2 years ago
Myriad-Dreamin
e1f5dfe50c
Fix value parser for `Option<PathBuf>`
2 years ago
Jesper Håkansson
8baa0b9e91
Merge pull request #1305 from lynn/version-command
...
Restore --version command
2 years ago
Lynn
91870e497d
Restore --version command
2 years ago
Jesper Håkansson
e0c5a85dea
Merge pull request #1300 from rustwasm/0.12.0
...
0.12.0
2 years ago
Jesper Håkansson
0392d4003e
0.12.0
2 years ago
Jesper Håkansson
78808ee7f4
Merge pull request #1298 from heaths/issue1215-redux
...
Respect package.readme in Cargo.toml
2 years ago
Heath Stewart
a0b7a52843
Respect package.readme in Cargo.toml
...
Fixes #1215 by honoring how package.readme is authored in Cargo.toml, if authored. This could be a path or a boolean to disable searching for the path.
Also fixes the existing `it_copies_a_readme_provided_path` test which was an exact copy - just with fewer empty lines - of `it_copies_a_readme_default_path` and wasn't honoring any authored path since there was no way to get the authored path.
2 years ago
Jesper Håkansson
b9faed76bf
Merge pull request #1296 from rustwasm/term-color-tests
...
Revert "Respect package.readme in Cargo.toml"
2 years ago
Jesper Håkansson
673bc296fc
chore: Run cargo fmt
2 years ago
Jesper Håkansson
927e716b87
Revert "Respect package.readme in Cargo.toml"
...
This reverts commit 22d6d728d0
.
2 years ago
Jesper Håkansson
5293380445
Merge pull request #1279 from tomasol/fix-target-dir-in-bindgen
...
Fix getting the target-dir in wasm_bindgen_build
2 years ago
Jesper Håkansson
063ecc40b2
Merge pull request #1272 from matthiasgeihs/option-omit-default-path
...
Add wasmbindgen option: `omit_default_module_path`
2 years ago
Jesper Håkansson
fc59a2695d
Merge pull request #1292 from hamza1311/clap
...
Update dependencies
2 years ago
Muhammad Hamza
1f75f15dac
cargo update
2 years ago
Muhammad Hamza
6dc666b372
Invalid wasm-bindgen config is handled by toml parser
2 years ago