Joey Perrott 992dc93ea3 refactor(dev-infra): remove usages and dependency on shelljs (#42911)
Remove usages of shelljs and instead use spawn/spawnSync.

PR Close #42911
2021-07-21 22:33:37 +00:00

18 lines
469 B
Python

load("//dev-infra:defaults.bzl", "ts_library")
package(default_visibility = ["//visibility:public"])
ts_library(
name = "driver-utilities",
srcs = glob(["*.ts"]),
tsconfig = "//dev-infra/benchmark/component_benchmark:tsconfig-e2e.json",
deps = [
"//packages/benchpress",
"@npm//@types/node",
"@npm//@types/selenium-webdriver",
"@npm//node-uuid",
"@npm//protractor",
"@npm//selenium-webdriver",
],
)