-
Notifications
You must be signed in to change notification settings - Fork 409
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
Update bindgen version & fix some cache issue #526
Commits on Jan 12, 2019
-
Remove redundant or misleading Command configs
`child::run` overrides the stdout config, so is misleading to to set it differently beforehand. `child::run` uses `spawn()`, which inherits stdin by default. So, no need to set stdin to default beforehand, particularly when the spawned program is non-interactive.
Configuration menu - View commit details
-
Copy full SHA for 4e04652 - Browse repository at this point
Copy the full SHA 4e04652View commit details -
Fix npm error when spawned in Windows
Issue rustwasm#277 - Affects running login, pack, and publish on Windows. `Command::new("npm")` launched `npm` with quotes, `"npm"`, causing a run-time error on Windows. Now, `Command::new` is wrapped by `child::new_command(program: &str)`. This prepends `cmd /c` to the program name if `cfg!(windows)`. See rustc: #42436, #42791, #44542
Configuration menu - View commit details
-
Copy full SHA for 3e995c8 - Browse repository at this point
Copy the full SHA 3e995c8View commit details
Commits on Jan 14, 2019
-
Merge pull request rustwasm#489 from danwilhelm/windows_fixes
Windows fixes
Configuration menu - View commit details
-
Copy full SHA for 3fc8043 - Browse repository at this point
Copy the full SHA 3fc8043View commit details
Commits on Jan 15, 2019
-
This commit replaces the `slog` family of crates used by `wasm-pack` with the `log` crate plus `env_logger`. This also means that by default `wasm-pack` also won't create a `wasm-pack.log` file in the current directory. Enabling logging will now be done through `RUST_LOG=wasm_pack` instead of `-v` flags. Closes rustwasm#425
Configuration menu - View commit details
-
Copy full SHA for c4c3b9e - Browse repository at this point
Copy the full SHA c4c3b9eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1e3de30 - Browse repository at this point
Copy the full SHA 1e3de30View commit details -
Configuration menu - View commit details
-
Copy full SHA for b2d75ec - Browse repository at this point
Copy the full SHA b2d75ecView commit details -
Merge pull request rustwasm#491 from rustwasm/alexcrichton-log
Alexcrichton log
Configuration menu - View commit details
-
Copy full SHA for a1eeb3b - Browse repository at this point
Copy the full SHA a1eeb3bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3c67711 - Browse repository at this point
Copy the full SHA 3c67711View commit details -
Configuration menu - View commit details
-
Copy full SHA for 272e48e - Browse repository at this point
Copy the full SHA 272e48eView commit details
Commits on Jan 19, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 7bc9d8d - Browse repository at this point
Copy the full SHA 7bc9d8dView commit details -
Configuration menu - View commit details
-
Copy full SHA for ba8f6f6 - Browse repository at this point
Copy the full SHA ba8f6f6View commit details
Commits on Jan 25, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 4d5bf4c - Browse repository at this point
Copy the full SHA 4d5bf4cView commit details
Commits on Feb 23, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 500a186 - Browse repository at this point
Copy the full SHA 500a186View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5cc04ca - Browse repository at this point
Copy the full SHA 5cc04caView commit details -
bugfix(test-build): reuse cache
I believe the older code has something wrong so it install wasm-bindgen from cargo, but now it can download the prebuilt version. fixes rustwasm#447
Configuration menu - View commit details
-
Copy full SHA for 8d2465e - Browse repository at this point
Copy the full SHA 8d2465eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9be4e3c - Browse repository at this point
Copy the full SHA 9be4e3cView commit details -
Configuration menu - View commit details
-
Copy full SHA for d10d6f9 - Browse repository at this point
Copy the full SHA d10d6f9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2717cec - Browse repository at this point
Copy the full SHA 2717cecView commit details -
Configuration menu - View commit details
-
Copy full SHA for d56a944 - Browse repository at this point
Copy the full SHA d56a944View commit details -
bugfix(tests/test): fix logic of test_output_is printed_once
because the assert commaned seems to capture stdout in err string, work around the test faing by double the log counts
Configuration menu - View commit details
-
Copy full SHA for dbd4571 - Browse repository at this point
Copy the full SHA dbd4571View commit details -
Configuration menu - View commit details
-
Copy full SHA for a314444 - Browse repository at this point
Copy the full SHA a314444View commit details
Commits on Feb 26, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 248ae67 - Browse repository at this point
Copy the full SHA 248ae67View commit details