diff options
author | zaverden <zaverden@yandex-team.com> | 2025-05-22 20:00:41 +0300 |
---|---|---|
committer | zaverden <zaverden@yandex-team.com> | 2025-05-22 20:28:43 +0300 |
commit | d60f47d7590712a9608073b8451e3347e5ebc805 (patch) | |
tree | b10be366cf17680a89d2e4c827f2f6bdff7ca02d | |
parent | 363adfd44a85e76439a76a81044cd14e60d2c0ba (diff) | |
download | ydb-d60f47d7590712a9608073b8451e3347e5ebc805.tar.gz |
fix(conf): do not add extract_output_tars_recipe if install_node_modules_recipe is used
commit_hash:92ac974974648d0184eb5cca121d7638ffc3b9ce
-rw-r--r-- | build/plugins/nots.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/build/plugins/nots.py b/build/plugins/nots.py index 3fc54dde0f2..5f9c4480ac4 100644 --- a/build/plugins/nots.py +++ b/build/plugins/nots.py @@ -654,7 +654,6 @@ def _setup_tsc_typecheck(unit: NotsUnitType) -> None: unit.on_peerdir_ts_resource("typescript") user_recipes = unit.get("TEST_RECIPES_VALUE") unit.on_setup_install_node_modules_recipe() - unit.on_setup_extract_output_tars_recipe([unit.get("MODDIR")]) test_type = TsTestType.TSC_TYPECHECK @@ -707,7 +706,6 @@ def _setup_stylelint(unit: NotsUnitType) -> None: recipes_value = unit.get("TEST_RECIPES_VALUE") unit.on_setup_install_node_modules_recipe() - unit.on_setup_extract_output_tars_recipe([unit.get("MODDIR")]) test_type = TsTestType.TS_STYLELINT |