From 12a7c5999047a762738cb96559bad2f94c998384 Mon Sep 17 00:00:00 2001 From: Greg Magolan Date: Tue, 2 Apr 2024 19:00:41 -0400 Subject: [PATCH] refactor: removed deprecated //npm:npm_import.bzl (#1570) --- npm/npm_import.bzl | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 npm/npm_import.bzl diff --git a/npm/npm_import.bzl b/npm/npm_import.bzl deleted file mode 100644 index 23a2409c8d..0000000000 --- a/npm/npm_import.bzl +++ /dev/null @@ -1,11 +0,0 @@ -"""DEPRECATED: see //npm:repositories.bzl. -""" - -load(":repositories.bzl", _LATEST_PNPM_VERSION = "LATEST_PNPM_VERSION", _list_patches = "list_patches", _npm_import = "npm_import", _npm_translate_lock = "npm_translate_lock", _pnpm_repository = "pnpm_repository") - -# TODO(2.0): remove deprecated re-exports -npm_translate_lock = _npm_translate_lock -pnpm_repository = _pnpm_repository -LATEST_PNPM_VERSION = _LATEST_PNPM_VERSION -list_patches = _list_patches -npm_import = _npm_import