Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Commit 9da1d2a

Browse files
committed
Support for crates with multiple binary targets installed
1 parent 613cc23 commit 9da1d2a

File tree

6 files changed

+665
-712
lines changed

6 files changed

+665
-712
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,23 @@ jobs:
5858
crate: bat
5959
use-tool-cache: true
6060
- run: bat package.json
61+
62+
multiple_binary_targets:
63+
needs: test
64+
runs-on: ${{ matrix.os }}
65+
strategy:
66+
matrix:
67+
os:
68+
- ubuntu-latest
69+
- macOS-latest
70+
- windows-latest
71+
steps:
72+
- uses: actions/checkout@v2
73+
- name: Install wasm-bindgen-cli
74+
uses: ./
75+
with:
76+
crate: wasm-bindgen-cli
77+
version: 0.2.60
78+
use-tool-cache: true
79+
- run: test -f ~/.cargo/bin/wasm-bindgen
80+
shell: bash

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
# Changelog
2+
23
All notable changes to this project will be documented in this file.
34

45
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
56
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
67

8+
## [0.1.2] - 2020-04-18
9+
10+
### Added
11+
12+
- Support for crates with multiple binaries targets
13+
714
## [0.1.1] - 2020-04-07
815

916
### Fixed

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)