Skip to content
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

Closed
wants to merge 22 commits into from

Commits on Jan 12, 2019

  1. 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.
    danwilhelm committed Jan 12, 2019
    Configuration menu
    Copy the full SHA
    4e04652 View commit details
    Browse the repository at this point in the history
  2. 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
    danwilhelm committed Jan 12, 2019
    Configuration menu
    Copy the full SHA
    3e995c8 View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2019

  1. Configuration menu
    Copy the full SHA
    3fc8043 View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2019

  1. Replace slog with log

    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
    alexcrichton authored and ashleygwilliams committed Jan 15, 2019
    Configuration menu
    Copy the full SHA
    c4c3b9e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1e3de30 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b2d75ec View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a1eeb3b View commit details
    Browse the repository at this point in the history
  5. v0.6.0

    ashleygwilliams committed Jan 15, 2019
    Configuration menu
    Copy the full SHA
    3c67711 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    272e48e View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2019

  1. Configuration menu
    Copy the full SHA
    7bc9d8d View commit details
    Browse the repository at this point in the history
  2. fix conflicts

    huangjj27 committed Jan 19, 2019
    Configuration menu
    Copy the full SHA
    ba8f6f6 View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2019

  1. fix conflicts again

    huangjj27 committed Jan 25, 2019
    Configuration menu
    Copy the full SHA
    4d5bf4c View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2019

  1. Configuration menu
    Copy the full SHA
    500a186 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5cc04ca View commit details
    Browse the repository at this point in the history
  3. 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
    huangjj27 committed Feb 23, 2019
    Configuration menu
    Copy the full SHA
    8d2465e View commit details
    Browse the repository at this point in the history
  4. cargo fmt

    huangjj27 committed Feb 23, 2019
    Configuration menu
    Copy the full SHA
    9be4e3c View commit details
    Browse the repository at this point in the history
  5. update lock

    huangjj27 committed Feb 23, 2019
    Configuration menu
    Copy the full SHA
    d10d6f9 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2717cec View commit details
    Browse the repository at this point in the history
  7. update version again

    huangjj27 committed Feb 23, 2019
    Configuration menu
    Copy the full SHA
    d56a944 View commit details
    Browse the repository at this point in the history
  8. 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
    huangjj27 committed Feb 23, 2019
    Configuration menu
    Copy the full SHA
    dbd4571 View commit details
    Browse the repository at this point in the history
  9. remove unused import

    huangjj27 committed Feb 23, 2019
    Configuration menu
    Copy the full SHA
    a314444 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2019

  1. Update CHANGELOG.md

    ashleygwilliams authored Feb 26, 2019
    Configuration menu
    Copy the full SHA
    248ae67 View commit details
    Browse the repository at this point in the history