Exclude the typescript crate from the workspace

This'll help get `cargo build --all` and similar commands working. While
not critical at all, I execute it from time to time and it's a bummer
when it doesn't work!
This commit is contained in:
Alex Crichton 2019-01-11 10:28:44 -08:00
parent b04f60cf2b
commit ff3986aeb9

View File

@ -56,7 +56,6 @@ members = [
"crates/js-sys", "crates/js-sys",
"crates/test", "crates/test",
"crates/test/sample", "crates/test/sample",
"crates/typescript",
"crates/macro/ui-tests", "crates/macro/ui-tests",
"crates/web-sys", "crates/web-sys",
"crates/webidl", "crates/webidl",
@ -85,6 +84,7 @@ members = [
"examples/webgl", "examples/webgl",
"tests/no-std", "tests/no-std",
] ]
exclude = ['crates/typescript']
[patch.crates-io] [patch.crates-io]
wasm-bindgen = { path = '.' } wasm-bindgen = { path = '.' }