feat(design-system): use rpcs

This commit is contained in:
41666 2020-10-10 12:52:26 -04:00
parent f31b32c54a
commit 00dff464df
7 changed files with 14 additions and 10 deletions

View file

@ -4,7 +4,9 @@ def _render_deps(deps = []):
output_deps = []
for dep in deps:
if dep.startswith("//"):
if dep.startswith("//src/rpc"):
output_deps.append(dep + ":ts")
elif dep.startswith("//"):
output_deps.append(dep)
else:
output_deps.append("@npm//" + dep)