From c8102b5ba26e276c879dd6ac2cbd1d9de9ebbaa9 Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Thu, 5 Sep 2019 10:10:55 -0700 Subject: [PATCH] chore: remove tsc_wrapped_deps compatibility This was introduced a year ago in https://github.com/bazelbuild/rules_typescript/pull/276/files to help avoid a breaking change to rxjs. They no longer need it, and very unlikely anyone else ever used it. BREAKING CHANGE: A compatibility layer was removed. See discussion in https://github.com/bazelbuild/rules_nodejs/issues/1086 Fixes #1086 --- .../typescript/src/internal/ts_repositories.bzl | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/packages/typescript/src/internal/ts_repositories.bzl b/packages/typescript/src/internal/ts_repositories.bzl index 0f0feb6b77..06c7998a0f 100644 --- a/packages/typescript/src/internal/ts_repositories.bzl +++ b/packages/typescript/src/internal/ts_repositories.bzl @@ -29,19 +29,6 @@ def ts_setup_workspace(): # 0.16.8: ng_package fix for packaging binary files check_rules_nodejs_version("0.16.8") - # Included here for backward compatability for downstream repositories - # that use @build_bazel_rules_typescript_tsc_wrapped_deps such as rxjs. - # @build_bazel_rules_typescript_tsc_wrapped_deps is not used locally. - yarn_install( - name = "build_bazel_rules_typescript_tsc_wrapped_deps", - package_json = "@npm_bazel_typescript//internal:tsc_wrapped/package.json", - yarn_lock = "@npm_bazel_typescript//internal:tsc_wrapped/yarn.lock", - # Do not symlink node_modules as when used in downstream repos we should not create - # node_modules folders in the @npm_bazel_typescript external repository. This is - # not supported by managed_directories. - symlink_node_modules = False, - ) - yarn_install( name = "build_bazel_rules_typescript_devserver_deps", package_json = "@npm_bazel_typescript//internal/devserver:package.json",