From 791119d4af1066b20fa2b5bf8fc82d04d843d51d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 5 Nov 2020 15:53:21 +0100 Subject: build: rewrite tools/ scripts to deno (#8247) This commit rewrites scripts in "tools/" directory to use Deno instead of Python. In return it allows to remove huge number of Python packages in "third_party/". --- docs/contributing/development_tools.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/contributing/development_tools.md') diff --git a/docs/contributing/development_tools.md b/docs/contributing/development_tools.md index db6f9a25a..a11e7beff 100644 --- a/docs/contributing/development_tools.md +++ b/docs/contributing/development_tools.md @@ -23,13 +23,13 @@ cargo test std_tests Lint the code: ```shell -./tools/lint.py +deno run -A --unstable ./tools/lint.js ``` Format the code: ```shell -./tools/format.py +deno run -A --unstable ./tools/format.js ``` ### Profiling -- cgit v1.2.3